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

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

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`