我正在开发一个汇编程序,它将接受用户输入并根据变量检查它,但由于某种原因,这段代码总是会说密码输入不正确。请注意,我没有包含某些调用的代码,但我确信它们确实有效,因为我在许多其他示例中完美地使用了它们。基本上,我需要知道为什么这拒绝承认我的输入和字符串匹配。任何帮助是极大的赞赏。
start:
mov ax, login_input
mov bx, login_message
call os_input_dialog ;opens a dialog box that shows the string login_message,
;then it takes user input andd stores it in ax
mov si, login_input
mov di, password
cmp si, di ;compares input against the password
je app_selector ;if equal, jump to the next part of code
jmp start ;otherwise try again
login_input times 12 db 0
login_message db 'Password: '
password db 'root'