使用系统调用以汇编语言从键盘输入

时间:2013-11-13 08:08:50

标签: macos assembly input x86 nasm

我正在尝试使用NASM汇编语言中的系统调用创建自己的获取和放置函数。到目前为止,puts函数在这段代码中工作得很好,但是我无法让终端在gets函数中等待键盘的输入。

global start

SECTION .text

SECTION .data
    prompt1: db "We will make you a box.  How tall would you like it to be?", 0
    length1: equ $-prompt1
    prompt2: db "How wide would you like it to be?" , 0
    length2: equ $-prompt2
    input: dd 0




start:
    mov edi, prompt1
    mov esi, length1
    call puts

    mov edi, input
    mov esi, 4
    call gets

    mov eax, 0
    ret


puts:
    mov dword [esp], 1
    mov dword [esp+8], esi
    mov dword [esp+4], edi
    mov eax, 0x4
    sub esp, 4
    int 0x80
    add esp, 16
    ret

gets:
    mov dword [esp], 0
    mov dword [esp+4], esi
    mov dword [esp+8], edi
    mov eax, 3
    sub esp, 4
    int 0x80
    add esp, 16
    ret

这是输出:     我们会让你成为一个盒子。你想要它多高?

但它没有提示输入......请帮助!

1 个答案:

答案 0 :(得分:0)

问题是我需要将.bss部分用于未初始化的数据。