2

程序需要从用户那里获取一个简单的字符串并将其显示回来。我已经让程序从用户那里获取输入,但我似乎无法存储它。这是我到目前为止所拥有的:

BITS 32
global _main
section .data

prompt db "Enter a string: ", 13, 10, '$'
input resd 1 ; something I can using to store the users input.

name db "Name: ******", 13, 10,'$'
StudentID db "********", 13, 10, '$'
InBoxID db "*************", 13, 10, '$'
Assignment db "************", 13, 10, '$'
version db "***************", 13, 10, '$'

section .text
_main:

mov ah, 9
mov edx, prompt
int 21h
mov ah, 08h
while:
    int 21h
            ; some code that should store the input.
    mov [input], al
    cmp al, 13
    jz endwhile
    jmp while
endwhile:

mov ah, 9
    ; displaying the input.

mov edx, name
int 21h
mov edx, StudentID
int 21h
mov edx, InBoxID
int 21h
mov edx, Assignment
int 21h
mov edx, version
int 21h
ret

我正在使用 NASM 组装它。

4

2 回答 2

4

看起来您没有使用适当的缓冲区来存储用户输入。

这个站点有一个大型的x86 教程,分为 23 个部分,你应该每天做一个部分。

第 14 天,他展示了一个从用户读取字符串并将其存储到缓冲区中,然后再次打印出来的示例。

于 2009-02-07T05:45:24.327 回答
4

您只是在读取字符而不存储它们。您应该将 AL 直接存储到 StudentID/InBoxID/Assignment/Version 中,而不是存储到那个“输入”中。您可以利用它们在内存中的相对位置并编写一个循环来填充所有它们,就像在一个连续的空间中一样。

它可以是这样的:

; For each string already padded with 13, 10, $
; at the end, use the following:
mov ah, 08h
mov edi, string
mov ecx, max_chars
cld
while:
        int 21h
        stosb         ; store the character and increment edi
        cmp ecx, 1    ; have we exhausted the space?
        jz out
        dec ecx
        cmp al, 13
        jz terminate  ; pad the end
        jmp while
terminate:
        mov al, 10
        stosb
        mov al, '$'
        stosb
out:
        ; you can ret here if you wish

我没有测试,所以它可能有错误。

或者您可以使用其他 DOS 功能,特别是INT21h/0Ah。它可能更优化和/或更容易。

于 2009-02-07T05:56:16.113 回答