Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TomerAberbach/mano-simulator
🖥️ An assembler and hardware simulator for the Mano Basic Computer, a 16 bit computer.
https://github.com/TomerAberbach/mano-simulator
16bit architecture assembler computer-architecture editor hardware-simulation hardware-simulator instruction-set-architecture java java-8 java-application java8 javafx javafx-8 javafx-application mano mano-machine mano-simulator simulator text-editor
Last synced: 3 months ago
JSON representation
🖥️ An assembler and hardware simulator for the Mano Basic Computer, a 16 bit computer.
- Host: GitHub
- URL: https://github.com/TomerAberbach/mano-simulator
- Owner: TomerAberbach
- License: mit
- Created: 2017-11-09T23:37:10.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2023-05-26T19:56:12.000Z (over 1 year ago)
- Last Synced: 2024-02-17T10:39:08.875Z (9 months ago)
- Topics: 16bit, architecture, assembler, computer-architecture, editor, hardware-simulation, hardware-simulator, instruction-set-architecture, java, java-8, java-application, java8, javafx, javafx-8, javafx-application, mano, mano-machine, mano-simulator, simulator, text-editor
- Language: Java
- Homepage:
- Size: 1.26 MB
- Stars: 33
- Watchers: 3
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Mano Simulator
> An assembler and hardware simulator for the Mano Basic Computer, a 16 bit computer.
This is a JavaFX application that compiles assembly code for and runs a simulation of Mano's Computer as detailed in:
Computer System Architecture, 3rd edition
by M. Morris Mano
Published by Prentice-Hall, c 1993
Chapter 5, pp 123-172.## Usage
1. Download the latest jar from [releases](https://github.com/TomerAberbach/mano-simulator/releases)
2. Install a Java version compatible with the downloaded jar's Java version
3. For jars supporting Java versions lower than 11, install JavaFX
4. Assuming `mano-simulator.jar` is in the current working directory, run the following command:```sh
$ java -jar mano-simulator.jar
```If the `java` command is not found, then [ensure `java` is in your `PATH`](https://www.java.com/en/download/help/path.html).
## Development
1. Install [Git](https://github.com/git-guides/install-git)
2. Run the following command to clone the repository:```sh
$ git clone [email protected]:TomerAberbach/mano-simulator.git
```3. Install [Maven](https://maven.apache.org)
4. Assuming the current working directory is the cloned repository, run the following command to package the application:```sh
$ mvn package
```An executable jar should appear at `target/mano-simulator-VERSION.jar`, where `VERSION` matches the version in `pom.xml`. Replace `VERSION` in and run the following command to run the application:
```sh
$ java -jar target/mano-simulator-VERSION.jar
```## Examples
See [example programs](examples.md).
## License
[MIT](https://github.com/TomerAberbach/mano-simulator/blob/main/license) © [Tomer Aberbach](https://github.com/TomerAberbach)