https://github.com/johnnyjayjay/mima
An emulator of the MIMA (minimal machine) processor
https://github.com/johnnyjayjay/mima
Last synced: 9 months ago
JSON representation
An emulator of the MIMA (minimal machine) processor
- Host: GitHub
- URL: https://github.com/johnnyjayjay/mima
- Owner: JohnnyJayJay
- Created: 2020-12-21T12:30:48.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-21T21:19:44.000Z (about 5 years ago)
- Last Synced: 2025-02-09T23:27:35.011Z (11 months ago)
- Language: Rust
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mima
An emulator of the "minimal machine" ("mima") used as a processor model for learning purposes.
This project implements a cli assembler and disassembler for its instructions as well as a virtual runtime to execute and debug mima binaries.
This is a WIP, more features and documentation are to follow soon.
## Installation
1. [Install Rust](https://www.rust-lang.org/tools/install)
2. Clone this repository (`git clone `)
3. `cargo build --release`
4. The result executable can then be found at `./target/release/mima(.exe)`
The executable is a cli application, so try it out by just running it in your terminal.
I might provide some prebuilt binaries in the future.