https://github.com/scriptscorpion/snake-x86-64
classic Snake game built in Assembly language for NASM compiler
https://github.com/scriptscorpion/snake-x86-64
assembly assembly-language snake-game
Last synced: 9 months ago
JSON representation
classic Snake game built in Assembly language for NASM compiler
- Host: GitHub
- URL: https://github.com/scriptscorpion/snake-x86-64
- Owner: ScriptScorpion
- Created: 2025-08-09T10:33:24.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-09T18:18:21.000Z (11 months ago)
- Last Synced: 2025-08-09T20:28:19.230Z (11 months ago)
- Topics: assembly, assembly-language, snake-game
- Language: Assembly
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to compile:
* For Linux: `nasm -f elf64 snake.asm -o exe.o && ld exe.o -o exe`
* For Windows: `nasm -f win64 snake.asm -o exe.obj && ld exe.obj -o exe.exe`