https://github.com/vldkrlk/snake-assembly
🐍 Snake game written in Assembly
https://github.com/vldkrlk/snake-assembly
assembly game nasm nasm-assembly ncurses snake-game terminal
Last synced: 2 months ago
JSON representation
🐍 Snake game written in Assembly
- Host: GitHub
- URL: https://github.com/vldkrlk/snake-assembly
- Owner: vldkrlk
- Created: 2025-02-06T12:07:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-06T13:27:55.000Z (over 1 year ago)
- Last Synced: 2025-04-01T12:20:57.811Z (about 1 year ago)
- Topics: assembly, game, nasm, nasm-assembly, ncurses, snake-game, terminal
- Language: Assembly
- Homepage:
- Size: 213 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
x86-64 Assembly console snake game
Only for Linux systems

## Build
You need to install ncurses library.
#### Compile
```
nasm -g -f elf64 -o snake64.o snake64.asm
```
#### Link
```
gcc -g -o ./snake64.out snake64.o -lncurses
```
## Usage
Make sure the console window has a size of 80x24 characters
## License
MIT - Vlad Koroliuk 2025