如何在程序集8086中从内存中打印数据

时间:2015-06-20 12:12:25

标签: assembly x86-16

我是程序员的新手我正在编写一个程序来添加两个数字,然后将答案移动到内存中,真正让我知道并在emu8086中将其显示在屏幕上

这是我的代码

org 100h

 ans dw ?,"$"

 mov ax,23
 mov bx,23
 add ax,bx   
 mov ans,ax
 mov ah,09h
 mov dx,offset ans 
   int 21h
 ret

我该怎么办请告诉

 org 100h

 ans dw ?,"$"

 mov ax,23
 mov bx,23
 add ax,bx   
 mov ans,ax
 mov ah,09h
 mov dx,offset ans 
   int 21h
 ret

0 个答案:

没有答案