实验四 第三题。求指教。
(3)下面的程序功能是将“mov ax,4c00h"之前的指令复制到内存0:200处,补全程序。上机调试,跟踪运行结果。assume cs:code code segment mov ax, code ;或mov ax, cs mov ds,ax mov ax,0020h mov es,ax mov bx,0 mov cx, 18h 【这里为什么是18h,而不是18上面的代码只有18个字节吧。 】;或mov cx, 17h ;或sub cx,5s: mov al, mov es:,al inc bx loop s mov ax,4c00h int 21h code ends end 从程序入口到mov ax,4c00h之前应该有18H个字符
页:
[1]