Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 550 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 550 Bytes

Spiral

❯ ./spiral 10 1
# # # # # # # # # #
                  #
# # # # # # # #   #
#             #   #
#   # # # #   #   #
#   #     #   #   #
#   #         #   #
#   # # # # # #   #
#                 #
# # # # # # # # # #

Build

nasm -f elf64 spiral.asm -o spiral.o && ld -s spiral.o -o spiral

Build with reduced size

nasm -f elf64 spiral.asm -o spiral.o && ld --nmagic -s spiral.o -o spiral

Build with debugging

nasm -f elf64 -F stabs spiral.asm -o spiral.o && ld spiral.o -o spiral