在ubuntu上运行汇编代码

时间:2010-10-11 20:49:42

标签: linux assembly ubuntu nasm

我试图运行的代码是下面的。 我使用nasm util将其转换为目标文件。当我试图执行它时说“无法执行二进制文件”。

我运行命令: nasm -f elf -o helloworld.o helloworld.asm

segment .data
msg  db   "Hello, world!",10
len  equ  $ - msg

segment .text
global _start

_start:
   mov  eax,4
   mov  ebx,1
   mov  ecx,msg
   mov  edx,len
   int  80h

   mov  eax,1
   mov  ebx,0
   int  80h

这是我在汇编中的第一个程序,除了编译一些之外我没有使用ubuntu 基本的c程序。我需要一些帮助,谢谢大家。

1 个答案:

答案 0 :(得分:10)

它完全适合我的代码。

您是否链接了最终目标文件?

试试这个:ld helloworld.o -o helloworld