python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
I have trouble using arrays in assembly / emu8086
I am a very beginner in assembly. I want to print 2 members of an array.
This is how I first wrote my code:
mov PRIME_NUMBERS[1],2
mov ax,PRIME_NUMBERS[1]
call PRINT
...
Danial Hamedi
Votes: 0
Answers: 1
space in the beginning of the console when printing in emu8086
I'm trying to output the string "you can start typing here" on the console but it displays a big gap before the text as the picture shows. One line down and indented many columns.
IDK what...
Soraya Forward
Votes: 0
Answers: 0
Assembly language code is giving inaccurate results. (8086 emulator)
I need to write a code in 8086 emulator where a user gives an input from 0 to 9. If the value is below 3, 'Good morning!' is printed. If the value is greater or equal to 4 and less than 6 (just 4 and ...
Mameeno
Votes: 0
Answers: 1