比较两个字符的麻烦

时间:2012-11-16 13:10:26

标签: string assembly ascii

我想知道我的问题在这里。它向后打印字符串,并以正确的字符读取它对元音进行计数的子例程,但是它将字符与顶部字符进行比较时出现了问题。

基本上,如何在程序开头定义字符,以便我可以正确比较它们?

//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

1 个答案:

答案 0 :(得分:0)

字符存储为单个字节。您应该比较它们,例如:cmpb %cl, A应该有效,或直接cmpb %cl, 'A'。建议:您可以将它们视为一个数组,然后迭代它们而不是单独测试每个数组。

还要注意从堆栈中清除应添加到堆栈指针的函数参数,例如addl $4, %esp而不是subl $4, %esp,绝对不是subl $4, (%esp)

相关问题