#;CodeBlocks环境:
.intel_syntax
.data
msg: .asciz "Hello,GNU Assembler!\n"
.text
.global _main
_main:
push ebp
mov ebp,esp
push offset msg
call _printf
mov eax,0
leave
ret
.end
相似问题