int main(){
	int fd;
	char * buf;
	Create("archivo.nuevo");
	fd = Open("archivo.nuevo");
	Write("prueba", 6, fd);
	Close1(fd);
	//Exec("../test/brillo");	
	//Exec("brillo1");

	//char* buf = new int[6];
	fd = Open("archivo.nuevo");
	Read(buf, 6, fd);
	Write(buf, 6, 1);

	Halt();
	return 0;
}