debug中默认为16进制,masm默认为10进制
在debug中编程:
mov ds, ax
mov al, [0]
mov bl, [1]
mov cl, [2]
mov dl, [3]
在masm中编程:
code segment
mov ax, 2000H
mov ds, ax
mov al, [0]
mov bl, [1]
mov cl, [2]
mov dl, [3]
mov ax, 4c00H
int 21H
code ends
end<
debug中默认为16进制,masm默认为10进制
在debug中编程:
在masm中编程:
end<