linux – 在ubuntu上运行汇编代码

前端之家收集整理的这篇文章主要介绍了linux – 在ubuntu上运行汇编代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图运行的代码是吼叫.
我使用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程序.我需要一些帮助,谢谢大家.

解决方法

它对我来说非常适合您的代码.

链接了最终的目标文件了吗?

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

原文链接:https://www.f2er.com/linux/395011.html

猜你在找的Linux相关文章