在这段代码中,我试图让编译器识别字符串中的第二个字符。例如,我输入haris;然后我希望能够在字符串“haris”中迭代到“a”。我使用lea来获取指向寄存器商店“haris”的指针。然后我增加了寄存器eax,它作为指针并且最初指向“h”,那么它应该指向“a” - 对吗?但是,我的代码似乎没有按预期工作,因为如果它有效,跳转到_works应该正常工作。
extern _printf
extern _scanf
extern _printf
extern _system
extern _strcmp
segment .data
szPAUSE db'PAUSE', 0
szStrIn db '%s',0
szName db 0,0
szNworks db 'Doesnt work', 10,0
szworks db 'Does work', 10,0
segment .code
global _main
_main:
enter 0,0
;get name. I input "haris" for test
push szName
push szStrIn
call _scanf
add esp, 8
;;test to see if name was inputted
mov esi, szName
push esi
call _printf
add esp, 4
;;get the address of the second character in szName, which in my case is "a"
lea eax, [esi+1]
;; compare the second character with "a"
cmp eax, 0x61
je _works
;; if the character is not equal to "a"
push szNworks
call _printf
add esp, 4
push szPAUSE
call _system
add esp, 4
leave
ret
;;if the character is equal to "a"
_works:
push szworks
call _printf
add esp, 4
push szPAUSE
call _system
add esp, 4
leave
ret
答案 0 :(得分:3)
正如您的评论所说,您将地址加载到eax
,而不是字符本身。您应该使用lea
来加载零扩展名的字符(因为您稍后会与movzx eax, byte [esi+1]
进行比较),而不是eax
。如果您保留lea
,则需要在之后插入movzx eax, byte [eax]
。如果您稍后只注意使用低8位,则可以使用简单mov
,例如:
mov al, [esi+1]
cmp al, 0x61