Skip to content

Latest commit

 

History

History
10 lines (4 loc) · 92 Bytes

File metadata and controls

10 lines (4 loc) · 92 Bytes

nasm -f elf exec.asm -o exec.o

gcc -m32 exec.o -o exec

./exec ; echo $?

gcc -S exec.c