Skip to content

Instantly share code, notes, and snippets.

View ClarisseCampos's full-sized avatar
🚿

Clarisse Campos ClarisseCampos

🚿
View GitHub Profile
@agutoli
agutoli / hello.S
Created September 25, 2012 20:42
Hello world em assembly
; Exemplo de um Hello World em Assembly
; ld -m elf_i386 -s -o hello hello.o
section .text align=0
global _start
mensagem db 'Hello world', 0x0a
len equ $ - mensagem