I need help to know how to use the value of CX in C I have a program which has to draw an x in the place where click with the mouse. And for that I need to know the value of the assembly interruption 33h.
int mouse_x(int x){
asm mov ax,03...
You will see I am doing an assembler drawing and I am already coloring it
but I have to be drawing line by line
the lines I draw with this code:
MOV CX,20 ;CORD X
MOV DX,21 ;CORD Y
CG6:
MOV AH, 0Ch; DRAW PIXEL
MOV AL,...
Could any assembler expert help me find the error?
The error gives me on the line:
BEGIN ENDP ; FIN DEL PROCEDIMIETO
My code:
.model tiny ;directiva del modelo de programacion
.stack; stack segment allocation policy
.data; data seg...
I need to pass a string that is uppercase to lowercase but I do not know what I can spend on mips, I know that the strlwr is spent in C but I do not know the assembler code, someone can help me, I have searched for information but it does not ap...
How can I make this code go through the whole loop without having to implement it one by one? For now what I have is this, the variable 7 would have to be stored inside an array and it has to have a loop that adds them all, going through the mem...
I need to keep a string between the locations 300h and 350h and its copy from location 202h, it occurred to me to do something like this believing that it was possible to reference the location with SI and use a variable as in other languages, b...
At school they gave me an exercise that goes like this:
Write a program in assembly language to define three standard arrays Block 1 Block 2 Block 3 and where each array has 8 bytes of size data when block 3 will end with the results.
The first...
I am doing a test on my router at home, I would like to know if it is possible to upload the busybox to the ftp server or telnet that has the gateway to use the linux options.
I have searched the web for documentation but I can not find anything...