An open API service indexing awesome lists of open source software.

https://github.com/scriptscorpion/asmladder


https://github.com/scriptscorpion/asmladder

assembly assembly-language ladder

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

*This program writes ladder to the screen, example of what code will print if you don't change SizeOfLadder variable:*
```
*
**
***
****
*****
```
# How to compile:
* For Linux: `nasm -f elf64 main.asm -o exe.o && ld exe.o -o exe`

* For Windows: `nasm -f win64 main.asm -o exe.obj && ld exe.obj -o exe.exe`