Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 days 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 (6 days ago)
- Default Branch: main
- Last Pushed: 2025-02-06T13:27:55.000Z (6 days ago)
- Last Synced: 2025-02-06T14:22:16.540Z (6 days 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
![snake game gif](./docs/preview.gif)
## 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