我想知道我的问题是什么。它向后打印字符串,并将正确的字符读入计算元音的子例程,但是在将字符与顶部字符进行比较的方式上存在问题。
基本上,我如何定义程序开头的字符,以便正确比较它们?
//trying to make FMT_CHR2 work
PROMPT:
.ascii "Enter the lowercase string to evaluate: \0"
FMT_STR:
.ascii "%s\0"
FMT_INT:
.ascii "%d\0"
FMT_CHR:
.ascii "%c\0"
FMT_CHR2:
.ascii "\n FMTCHR2 %c\n\0"
ENDTEST:
.ascii "\0"
A: .ascii "a"
E: .ascii "e"
I: .ascii "i"
O: .ascii "o"
U: .ascii "u"
TEST: .ascii "TEST\n\0"
RESULT: .ascii "\n Your string has %d non-blank characters\0"
.section .data
county: .long 0
vowelCounter: .long 0
.globl _main
.section .text
_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
subl $4,%esp
leal -4(%esp),%ebx
pushl %ebx
call _gets
subl $4,%esp
pushl (%ebx)
call _rprint
subl $4,%esp
pushl county
pushl $RESULT
call _printf
subl $4,%esp
pushl vowelCounter
pushl $FMT_INT
call _printf
subl $4,%esp
leave
ret
_rprint:
pushl %ebp
movl %esp,%ebp
cmpb $0,(%ebx)
je ending
call _vowelcount
pushl (%ebx)
addl $1,%ebx
call _rprint
pushl $FMT_CHR
call _printf
subl $4,(%esp)
incl county
ending: leave
ret
_vowelcount:
push %ebp
movl %esp,%ebp
movl (%ebx),%ecx
pushl %ecx
push $FMT_CHR2
call _printf
cmpl %ecx,A
je _vAdd
cmpl %ecx,E
je _vAdd
cmpl %ecx,I
je _vAdd
cmpl %ecx,O
je _vAdd
cmpl %ecx,U
je _vAdd
jmp end2
_vAdd:
incl vowelCounter
end2: leave
ret