-1

我正在尝试制作一个密码文件,您可以在其中输入密码,它会显示您的所有密码。我当前的代码是这样的,但它有一个错误:

.386
.model flat,stdcall
option casemap:none

include     \masm32\include\windows.inc
include     \masm32\include\kernel32.inc
include     \masm32\include\masm32.inc
includelib  \masm32\lib\kernel32.lib
includelib  \masm32\lib\masm32.lib

.data
        input   db 'Enter the password:',13,10,0
        string  db 'The passwords are:',0
        space db '       ',0
        pass1 db 'example password 1',0
        pass2 db 'example password 2',0
        pass3 db 'example password 3',0
        pass4 db 'example password 4',0
        ermsg db 'Incorrect Password. Exiting....',0
        count dd 0
            comp dd 13243546

.data?
        buffer db 100 dup(?)
.code
start:
_top:
        invoke StdOut,ADDR input
        invoke StdIn,ADDR buffer,100 ; receive text input
        cmp buffer, comp ;sorry for not pointing this out - this is line 32
        jz _next
        jmp _error
_next:
        invoke StdOut, ADDR string
        invoke StdOut, ADDR space
        invoke StdOut, ADDR pass1
        invoke StdOut, ADDR pass2
        invoke StdOut, ADDR pass3
        invoke StdOut, ADDR pass4
        invoke ExitProcess,0
_error:
        invoke StdOut, ADDR ermsg
        mov eax, 1
            mov count, eax
            cmp count, 3
            jz _exit
            jmp _top:
_exit:
            invoke ExitProcess, 0

这是错误:

 test.asm(32) : error a2070: invalid instruction operands

为什么会这样。我知道错误在第 32 行,但我不明白错误是什么。

4

1 回答 1

3

cmp用于比较两个字节/字/双字,而不是字符串。所以你基本上要求它比较前四个字节和buffer四个字节,comp 使用无效的语法来做到这一点。

要比较字符串,您需要使用cmps或手动循环。

此外,comp应声明为comp db '13243546', 0. 您现在声明它的方式使其成为 dword 00CA149A,相当于 C 字符串"\x9A\x14\xCA"- 输入非常复杂:)

于 2012-04-29T08:41:07.433 回答