0

我第二次通过循环并输入 E (打算退出循环)时,我不断收到分段错误。如果我第一次输入 E,它就可以退出。希望我只是在这里愚蠢,有人可以建议一个简单的解决方法!

谢谢你的时间。

声明:

segment .bss
        a resd 1
        b resd 1
        op resb 2

主要的:

loop:

    call read_int    ;read two integers, then a char
    mov [a], eax
    call read_int
    mov [b], eax
    call read_char
    call read_char   ;takes newline input

    cmp al, 'E'      ;if char is E, then exit
    je exit

    call loop        ;start over

exit:
    dump_regs 0      ;completes, but then seg faults if the loop has run more than once
4

1 回答 1

3

我看到了几个问题/潜在的问题:

1)当你“调用”一个子程序时,你通常需要a)更新堆栈(在你的子程序中)和b)清除堆栈(在你返回之后)。

您没有向我们展示“read_int”或“read_char”,但我怀疑可能是这种情况。

2)坏:call loop。更好:jmp loop

您可以在这里找到一些好的 NASM 示例:http ://www.csee.umbc.edu/portal/help/nasm/sample.shtml

于 2015-03-30T02:05:39.153 回答