Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 258 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 258 Bytes

Fizzbuzz implementation written in (poor) ASM

This is one of my first few asm adventures. I'm sure it has some flaws, but it "works" (tm).

nasm -f elf32 fizzbuzz.asm
ld -m elf_i386 -o fizzbuzz fizzbuzz.o -lc -I/lib/ld-linux.so.2 -L /usr/lib32