No description
Find a file
2024-09-22 23:43:14 -04:00
include mld done 2024-09-22 16:02:42 -04:00
lib multitude of mld fixes, add entrypoint 2024-09-22 23:39:22 -04:00
masm mld done 2024-09-22 16:02:42 -04:00
mld multitude of mld fixes, add entrypoint 2024-09-22 23:39:22 -04:00
msim msim stub 2024-09-22 23:41:05 -04:00
test add global makefile, update tests 2024-09-22 23:41:30 -04:00
.gitignore start mld, add loading of object files, add fuzzing support 2024-09-20 21:02:38 -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