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
- Host: GitHub
- URL: https://github.com/bengabay11/snake
- Owner: bengabay11
- License: mit
- Created: 2019-07-12T15:51:47.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-21T13:15:24.000Z (over 6 years ago)
- Last Synced: 2025-02-22T05:18:41.554Z (over 1 year ago)
- Topics: assembly, dosbox, game, snake, tasm
- Language: Assembly
- Homepage:
- Size: 91.8 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Snake
A snake game written in assembly for DOS

### 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
```