我试图在linux上的nasm程序集中打印一个个位数整数。我目前拥有的编译很好,但是没有任何东西被写到屏幕上。有人能向我解释我在这里做错了什么吗?30h ; gets the ascii value in edx jmp write; jumps to write
mov eax, ecx ; moves ecx to eax for wri
我正在学习Linux上的asm (noobuntu10.04)我得到了以下代码:global _start ;must be declared for linker (ld)
mov ecx,msg ;message to writemov eax,4 ;system call number (sys_write)