Questions tagged as 'ensamblador'

0
answers

Save value of CX and DX (Assembler) in a variable C

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...
asked by 03.06.2018 / 23:02
0
answers

ASSEMBLED CYCLE IN ASSEMBLY

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,...
asked by 20.05.2018 / 07:43
0
answers

Assembler mismatched error

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...
asked by 09.05.2018 / 18:33
1
answer

Do a strlwr in mips

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...
asked by 29.04.2018 / 23:21
0
answers

I need help with my assembler exercise

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...
asked by 15.04.2018 / 11:40
0
answers

Save a string in a memory location 8086

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...
asked by 02.04.2018 / 06:51
0
answers

add the digits of a number in assambler

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...
asked by 15.03.2018 / 14:51
1
answer

how can I put a timer in assembler x86?

Hello, someone to help me and tell me what interruption I can use in assembler to do the same thing as the c ++ sleep function, please.     
asked by 16.12.2017 / 02:43
1
answer

Upload busybox to router ftp

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...
asked by 10.08.2016 / 17:48