我非常喜歡菜鳥。我相信這是非常基本的,但我已經多次瞭解了這一點。我試圖讓我的程序在兩條不同的線上顯示一個字符串。這是一個.com程序,我正在使用A86編譯器。這是爲了HW,我不是在試圖欺騙或類似的東西,因爲我真的想知道我做錯了什麼。彙編語言
jmp start ; This will start the program
;============================
msg db "Hello Word.$" ; A string variable
msg db "Michael J. Crawley$" ; A string variable with a value.
;============================
start:
mov ah,09 ; subfunction 9 output a string
mov dx,offset msg ; DX for the string
int 21h ; Output the message
int 21h ; Output the message
exit:
mov ah,4ch
mov al,00 ; Exit code
int 21h ; End program
什麼是你的代碼有問題?它是否「編譯」?你得到奇怪的輸出?最好添加這個問題。 – glasnt 2010-02-12 04:16:14