Top "Emu8086" questions

8086 source editor, assembler, disassembler, and software emulator (a virtual PC with MSDOS Interface)

Assembly Basics: Output register value

I just started learning assembly language and I am already stuck on the part to "display the decimal values stored …

assembly dos x86-16 emu8086
How can I print 0 to 100 in assembly language in emu 8086?

Here I have tried something to print 10 to 0 decimal numbers in emu8086. .MODEL SMALL .STACK 100H .DATA NUM DB 58D .…

assembly emu8086
Adding 4-digit numbers and displaying sum - Assembly Language

I am making a program in which I want to take two 4-digit numbers from user and display their sum. …

assembly emu8086
Assembly random numbers generator

I am using assembly 8086emu and I need a numbers generator for 8 numbers. I tried to use this piece of …

assembly x86 emu8086
Generating random numbers in assembly

I am new to assembly, and I am having problems generating random numbers. My code is simple: it generates 100 numbers …

assembly random x86 masm emu8086
Assembly 8086 EQU directive

I'm having trouble just making clear EQU directive in assembler (8086). abc EQU xyz Does EQU literally swaps abc when found …

assembly x86-16 emu8086
Graphics mode in assembly 8086

I have a variable that is called average and in my DATASEG, it changes every time because the user enters …

assembly graphics emu8086 vga
How to check if the CF flag is 1 in emu8086?

I am trying to find if the CARRY flag is 1 or not, but I don't know how to check it. …

assembly x86 emu8086 x86-16
Error 'Mov wrong parameters'

I'm starting to learn Assembly (ASM x86). I'm using the emulator emu8086. I've written the following instruction: mov eax,3 When …

assembly emulation low-level emu8086
Cannot move 8 bit address to 16 bit register

I am trying to assign variable to register here is the code: ORG 100h var1 DB 10 ; var2 DB 20 ; MOV BX,…

assembly x86 x86-16 emu8086