好的,所以我需要向后打印一个字符串。如果 ebx 是指向字符串数组开头的指针,为什么我不能只向它添加一个以转到数组中的下一个字节,即字符串中的第二个字符?
PROMPT:
.ascii "Enter the string to evaluate \0"
FMT_STR:
.ascii "%s\0"
FMT_INT:
.ascii "%d\0"
FMT_CHR:
.ascii "%c\0"
.globl _main
_main:
pushl %ebp # save old frame ptr
movl %esp,%ebp # set new frame ptr & save local var space
//create local variable space
subl $100,%esp
pushl $PROMPT
call _printf
leal -4(%ebp),%ebx
pushl %ebx
call _gets
call _rprint
leave
ret
_rprint:
pushl %ebp
movl %esp,%ebp
pushl -1(%ebx)
pushl $FMT_CHR
call _printf
leave
ret
编辑:我重新阅读了我的笔记并意识到我需要增加 8 才能转到字符串中的下一个字符。