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

https://github.com/bengabay11/snake

10th Grade Computer Science Final Project Written in 2016
https://github.com/bengabay11/snake

assembly dosbox game snake tasm

Last synced: 8 months ago
JSON representation

10th Grade Computer Science Final Project Written in 2016

Awesome Lists containing this project

README

          

# Snake
A snake game written in assembly for DOS

![Demo Image](images/demo.jpg)

### Requirements
* DOSBox 0.74-3
* TASM

### Deployment
- clone the repo to `Path_To_TASM\BIN\snake`
- open dos box and type the following commands
```
mount e:
e:
cd bin
cycles=max
tasm /zi snake\src\snake.asm
tlink /v snake.obj
snake
```