【发布时间】:2013-12-27 21:25:53
【问题描述】:
(包括 MinGW)
把一个字符串作为一个整体打印出来很容易,但是我怎样才能改变这个代码来打印出每个字母:
global _main
extern _printf
section .const
hello db 'Hello'
section .text
_main:
push hello
call _printf
add esp,4
【问题讨论】: