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 in a register on the screen". Im using the emu8086, any help would be appreciated! :) .model small ;Specifies the memory model used for program to identify the size of code and data segments org 100h ;allocate 100H memory locations for stack .data ;the segment of the memory to declare/initialze the variables var1 db 0006 var2 db 0002 var3 db 0001 .code ;start of the code segment