【发布时间】:2015-01-13 23:00:14
【问题描述】:
我有一个包含 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
我想过类似鞋面的东西,但它不起作用。
【问题讨论】:
-
Convert the number to a string,然后打印字符串。
-
好的,谢谢你。我会用的。