Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/aashrafh/numbermunchers

👦 One-Player Assembly 8086 inspired by the popular Number Munchers Game
https://github.com/aashrafh/numbermunchers

assembly assembly-x86 clone dosbox games kids kids-learn microprocessor number-munchers

Last synced: about 1 month ago
JSON representation

👦 One-Player Assembly 8086 inspired by the popular Number Munchers Game

Awesome Lists containing this project

README

        



NumberMunchers logo
















---

👦 One-Player Assembly 8086 inispired by the popular Number Munchers Game


## 📝 Table of Contents
- [About](#about)
- [Demo](#demo)
- [Install](#Install)
- [How To Play](#play)
- [Built Using](#tech)

## 🧐 About
```Number Munchers``` is an educational computer game for kids. The game randomly choose and a number between from 0 to 10 and asks you to choose all the multiple of that number.

The rules are very simple:
* You have 3 lives, each wrong choice your lives will be decreased.
* You have 1 minutes / 60 seconds to choose all the correct answers.
* You can not choose a number more than once.

## 📹 Video



Video Demo




## 📷 Screenshots


Image Demo
Image Demo
Image Demo


## 🏁 Install
1. Install [DOSBox](https://www.dosbox.com/).
2. Open ```DOSBox Options```.
3. Add the following lines to the end of the text file.
```
mount m Z:\Workspaces\GitHub\NumberMunchers\src
m:
masm main
link main
main
```
**Note:** do not forget to replace ```Z:\Workspaces\GitHub\NumberMunchers\src``` with your local directory.

## 💭 How To Play
You have to choice all the correct numbers. To move the player you can use:
* ```W``` to move ```UP```
* ```S``` to move ```DOWN```
* ```A``` to move ```LEFT```
* ```D``` to move ```RIGHT```
* ```V``` to choice a number

## ⛏️ Built Using
- [Assembly8086](https://en.wikipedia.org/wiki/X86_assembly_language) - low level programming language.
- [DOSBox](https://www.dosbox.com/) - emulator program.