Most voted "8086" questions
6 questions
Sort by count of
-
33
votes2
answers844
viewsMemory Position Array
I’m doing an implementation of a game on Assembly in the Proteus. I draw two random numbers from 1 to 99 and need to generate on the LCD an image referring to the numbers I generated. Example: If I…
-
3
votes1
answer1901
viewsMOD in Assembly
I need to make a comparison to see if the number X is PAR or ODD. I store the number in the AX register. How do I know that AX content is even or odd? Note: I store a number from 1 to 99.…
-
3
votes1
answer503
viewsHow can I print a user-typed string in Assembly 8086?
I’m having trouble printing a string that was later typed by the user through INT 21h/AH 0Ah. I have no idea how I can print the string that was filed in AL. mov ah, 0Ah int 21h I tried to use the…
-
1
votes0
answers48
viewsTransfer Values greater than 65536 to variable DD error - Assembly 8086
I’m having some difficulty assigning values greater than 65536 (16 bits), in my code example assign the value of 86400 (one-day value) to a variable with DD declaration (32-bit architecture) and the…
-
1
votes1
answer873
viewsRead txt on Assembly i8086
I have the following code to read txt file: ; um programa que demonstra a criação de um arquivo e a ; leitura do mesmo .model small .stack .code start: mov ax,@data ; endereço de base do segmento de…
-
1
votes0
answers28
viewsConvert numbers to decimal in assembly8086
Guys I’m trying to develop a adding calculator in assembly8086 only I’m not able to convert the numbers into sums above 10, if adding 4+5=9 works perfect now if I add 8+2=10 it didn’t display the…