├── .gitignore ├── LICENSE ├── README.md └── mips3c.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/m3c/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | It begins... 2 | -------------------------------------------------------------------------------- /mips3c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethteck/m3c/HEAD/mips3c.py --------------------------------------------------------------------------------