我正在尝试使用tasm输出一条消息,第一个使用.com程序(打印出除了消息之外的垃圾值)然后.exe程序运行得很好。这是代码:
code segment para public 'code'
assume cs:code, ds:code
org 100h
start:
jmp entry
message db "Hello World! $"
entry:
mov ah,09h
lea dx, message
int 21h
mov ah,4ch
mov al,00
int 21h
code ends
end start
我的代码出了什么问题?