Thanks to visit codestin.com
Credit goes to github.com

Skip to content

AdamJedl/spiral-asm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Prints square spiral to the terminal.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published