Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aashrafh/numbermunchers
- Owner: aashrafh
- License: mit
- Created: 2019-12-27T01:17:09.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-11T23:04:45.000Z (almost 5 years ago)
- Last Synced: 2024-10-25T14:33:20.244Z (3 months ago)
- Topics: assembly, assembly-x86, clone, dosbox, games, kids, kids-learn, microprocessor, number-munchers
- Language: Assembly
- Homepage:
- Size: 416 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
---
👦 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
## 📷 Screenshots
## 🏁 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.