Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donno2048/biosnake
Playable BIOS
https://github.com/donno2048/biosnake
bios game snake-game
Last synced: about 1 month ago
JSON representation
Playable BIOS
- Host: GitHub
- URL: https://github.com/donno2048/biosnake
- Owner: donno2048
- Created: 2024-08-16T17:02:15.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-08-16T18:43:07.000Z (4 months ago)
- Last Synced: 2024-08-16T19:59:40.118Z (4 months ago)
- Topics: bios, game, snake-game
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Biosnake
I use my [COM-BIOS integration program](https://github.com/donno2048/combios) to embed my [snake game](https://github.com/donno2048/snake) into a playable BIOS.
Compile `snake.raw` by running:
```sh
git submodule update --init # checkout the submodules
nasm snake/snake.asm -o snake.com # compile the snake game
nasm combios/bios.asm -D COM=snake.com -I combios -o snake.raw # compile the snake bios
rm snake.com # remove the snake game com file
```You can use qemu to emulate running the BIOS:
```sh
qemu-system-i386 -display curses -bios snake.raw -icount 19,align=on
```Use your numpad arrow keys to control the snake.