Metadata-Version: 2.1
Name: dashmips
Version: 0.0.3
Summary: Mips Interpreter
Home-page: UNKNOWN
Author: Neal Beeken
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Education
Classifier: Topic :: Software Development :: Assemblers
Classifier: Programming Language :: Assembly
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown

# Dashmips

Mips Interpreter Program

## Adding Syscalls / Adding Instructions
You can add to the existing files in the `dashmips/instructions` and `dashmips/syscalls` directories using the relevant decorator (`@`).
If you add instructions or syscalls to a new file in these subdirectories **YOU MUST** add an import of the new file to `dashmips/__init__.py`. Otherwise the instruction/syscall will not be constructed and added to the global list.


