https://github.com/scriptscorpion/asmladder
https://github.com/scriptscorpion/asmladder
assembly assembly-language ladder
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/scriptscorpion/asmladder
- Owner: ScriptScorpion
- Created: 2025-08-08T13:33:44.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-09-13T12:22:47.000Z (10 months ago)
- Last Synced: 2025-09-13T14:44:44.367Z (10 months ago)
- Topics: assembly, assembly-language, ladder
- Language: Assembly
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`