Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 271 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 271 Bytes

assembly-playground

Building on Linux or in WSL

as exit.s -o exit.o
ld exit.o -o exit

# with debug symbols
as exit.s -g -o exit.o

Run & Debug

# run
./exit

# see result
echo $?

# use gdb to debug
gdb ./exit