An emulator of a fantasy hardware ISA (inspired by DCPU-16).
This was originally written in 2018.
This is a project designed to help me learn about low level computing in the coolest way possible (in my opinion), by creating an emulator for custom hardware!
The instruction set is designed to be easy to emulate. Parameters are all 8-16 bits, with binary only used for signing. This makes it easier on the brain.
I have these uncompleted goals set in place:
- Debugger
- Keyboard
- Monochrome Display
To assemble a ROM:
./assemble.sh source destinationTo disassemble a ROM:
./disassemble.sh rom destinationTo emulate:
./emulate.sh romIf you find a bug, submit an issue, PR, or email me with a description and/or patch.
<<<<<<< HEAD Copyright (c) 2018-2025 Ben O'Neill [email protected]. This work is released under the terms of the MIT License. See LICENSE for the license terms.
MIT, refer to LICENSE.txt.
ba75e1b (update readme)