Linux汇编初步

安装软件

# 安装nasm汇编编译器:nasm
yum install nasm
# 安装gas汇编编译器:as
yum install binutils* 

第一个汇编程序

section .text
global main
main:
        mov eax,4
        mov ebx,1
        mov ecx,msg
        mov edx,14
        int 80h
        mov eax,1
        int 80h
msg:
        db "Hello World!",0ah,0dh

编译,链接和执行程序。

$> nasm -f elf hello.asm
$> ld -m elf_i386 -s -o hello hello.o
$> ./hello

你可能感兴趣的:(Linux汇编初步)