NASM - 显示值地址

时间:2015-01-13 23:00:15

标签: arrays assembly nasm

我有20个计数表。如何获得值“20”并在控制台上显示?

section .text
global _start

_start:
        mov     eax,4
        mov     ebx,1
        mov     ecx,length
        mov     edx,[length]

        mov     eax,1
        int     80h

section .data
variable times 20  db      0
length  dd $-variable

我想过像鞋子这样的东西,但它不起作用。

1 个答案:

答案 0 :(得分:0)

至少在退出之前调用该函数!

mov     eax,4
mov     ebx,1
mov     ecx,length
mov     edx,[length]
int     80h    ; <== Forgotten
mov     eax,1
int     80h