组装8086中的Malloc



我需要从用户接收输入,因此我必须使用malloc首先启动缓冲区。我在网上找不到任何例子。

这是缓冲区:

 section .bss
        buffer:
                resb 80                     ;store my input

如何完成?这个可以吗?(它编译,但我认为它不起作用...)

    push 80
    push buffer
    call malloc
    add esp, 8 

还是这个?(这不编译)

push 80
push buffer
call malloc
add esp, 8 
mov buffer, [eax]

问题是,当我给缓冲区输入0时,它会打印2608而不是48,因为ASCII值应打印。

输入1->相应地给出2609。所以我的猜测是,缓冲区的值不应该拥有。

这是fgets零件(它可以正常工作)

 push dword [stdin]             ;fgets need 3 param
    push dword 80                   ;max lenght
    push dword buffer               ;input buffer
    call fgets
    add esp, 12                     ;remove 3 push from stuck

这是打印部分:

push dword [buffer]             ;push string to stuck
push INT_FORMAT                     ; its INT_FORMAT:DB "%d", 10, 0
call printf             
add esp, 8              ;remove pushed argument

malloc具有一个DWORD参数,这是要分配的字节中的大小,因此应称为:

push <size>
call malloc
add esp, 4
; now eax points to an allocated buffer of the requested size
mov [eax], ebx ; will set the first 4 bytes of the buffer to ebx (etc...)

相关内容

  • 没有找到相关文章

最新更新