No description
Find a file
2024-10-01 18:20:10 -04:00
include remove inv instructions 2024-09-30 15:10:52 -04:00
lib update runtime to return exit code from main 2024-09-30 18:52:15 -04:00
masm add nop pseudo code 2024-10-01 18:19:08 -04:00
mld dont require phdr to link 2024-10-01 18:20:10 -04:00
msim msim done (ish) 2024-09-30 18:52:25 -04:00
test only save test source 2024-09-30 18:51:11 -04:00
tools update testing 2024-09-30 18:50:22 -04:00
.gitignore only save test source 2024-09-30 18:51:11 -04:00
compile_flags.txt add global makefile, update tests 2024-09-22 23:41:30 -04:00
config.mk add global makefile, update tests 2024-09-22 23:41:30 -04:00
LICENSE initial mips32 (r2000ish mips32r6) assembler 2024-09-09 12:41:49 -04:00
Makefile add global makefile, update tests 2024-09-22 23:41:30 -04:00
makefile.mk mld done 2024-09-22 16:02:42 -04:00
README.md update readme 2024-09-22 23:43:14 -04:00

mips toolchain

a full mips r2000 toolchain with a assembler and linker

  • plan to implement the rest of the mips32r6 instructions

outputs MIPS32r6 ELF32 Big Endian executables

installing
$ make build
$ sudo make install
uninstalling
$ sudo make uninstall

masm

the assembler

usage: masm [options] source.asm

mld

the linker

usage: mld [options] objfile...

msim

the emulator

  • i havent wrote it yet