Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nikitaivanovv/snake-asm

Tiny snake game written in x86_64 assembly for Linux
https://github.com/nikitaivanovv/snake-asm

assembly game nasm snake-game terminal

Last synced: 6 days ago
JSON representation

Tiny snake game written in x86_64 assembly for Linux

Awesome Lists containing this project

README

        

# snake-asm

I wanted to learn some assembly language, so I made this tiny snake game for x86_64 Linux using [NASM](https://www.nasm.us/).

![showcase](images/showcase.gif)

## Download binary

You can download a compiled version of the game from the [releases page](https://github.com/NikitaIvanovV/snake-asm/releases/latest).

## Compile and install

*NOTE: [NASM](https://www.nasm.us/) is required in order to compile the game.*

```sh
git clone https://github.com/NikitaIvanovV/snake-asm
cd snake-asm
sudo make install
```

Uninstall with `sudo make uninstall`

## Package manager

If you are an Arch Linux user, you can install [`snake-asm`](https://aur.archlinux.org/packages/snake-asm/) AUR package:

```sh
yay -S snake-asm
```