Skip to content
This repository was archived by the owner on Jul 2, 2025. It is now read-only.

Latest commit

 

History

History
58 lines (38 loc) · 1.06 KB

File metadata and controls

58 lines (38 loc) · 1.06 KB

BCPU-16

An emulator of a fantasy hardware ISA (inspired by DCPU-16).

This was originally written in 2018.

Overview

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!

Design

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.

Goals

I have these uncompleted goals set in place:

  • Debugger
  • Keyboard
  • Monochrome Display

How To

To assemble a ROM:

./assemble.sh source destination

To disassemble a ROM:

./disassemble.sh rom destination

To emulate:

./emulate.sh rom

Bugs

If you find a bug, submit an issue, PR, or email me with a description and/or patch.

License

<<<<<<< HEAD Copyright (c) 2018-2025 Ben O'Neill ben@oneill.sh. 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)