https://github.com/theema-dev/asmsim
Real-time simulator for 32 bit MIPS assembly code
https://github.com/theema-dev/asmsim
assembly mips-assembly simulator
Last synced: 4 months ago
JSON representation
Real-time simulator for 32 bit MIPS assembly code
- Host: GitHub
- URL: https://github.com/theema-dev/asmsim
- Owner: theEMA-dev
- License: mit
- Created: 2024-12-12T11:14:15.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2025-01-21T10:23:05.000Z (5 months ago)
- Last Synced: 2025-02-23T12:57:37.848Z (4 months ago)
- Topics: assembly, mips-assembly, simulator
- Language: Python
- Homepage: https://theema-dev.github.io/asmsim/
- Size: 205 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ASMsim: 32-bit MIPS Assembly Simulator

ASMsim is a real-time simulator for 32-bit MIPS assembly code, developed as an educational tool to help students learn and understand MIPS assembly programming.
## Features
- Real-time assembly simulation
- Intuitive graphical user interface
- Step-by-step execution
- Register and memory monitoring
- Cross-platform support (Windows, macOS, Linux)## Download
Get the latest version from the [Releases](https://github.com/theEMA-dev/asmsim/releases) page:
- Windows: `ASMsim-win-x64.zip`
- macOS: `ASMsim-macos.dmg`
- Linux: `ASMsim-linux.tar.gz`## Building from Source
### Prerequisites
- Python 3.8 or newer
- Git
- Visual Studio Build Tools (Windows only)### Setup
1. Clone the repository:
```bash
git clone https://github.com/theEMA-dev/asmsim.git
cd asmsim
```
2. Compile from source files:
```bash
.\venv\Scripts\activate
pyinstaller --clean asmsim.spec
```