0
我有以下代碼,我需要指向[C1]的下一個輸入,而不是[C0],但沒有硬編碼這個,這個想法是,用戶可以鍵入任何他們喜歡。我嘗試了INC BL,但它會導致非法操作代碼錯誤。謝謝我需要指向下一個內存地址
CLO ; Close unwanted windows.
Rep:
IN 00 ; Wait for key press - Store it in AL.
INC BL
CMP AL,0D ; Was it the Enter key? (ASCII 0D)
MOV [C0],AL
MOV [BL],AL
JNZ Rep ; No - jump back. Yes - end.
END
'MOV [BL],AL' < - 對我來說看起來不像是有效的x86有效地址。 – Michael