blob: b1920ac0db3ca1bf9c1ea08f8bfe238d36f235ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
### 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
```bash
$ make build
$ sudo make install
```
##### uninstalling
```bash
$ sudo make uninstall
```
#### masm
the assembler
`usage: masm [options] source.asm`
#### mld
the linker
`usage: mld [options] objfile...`
#### msim
the emulator
`usage: msim [options] executable`
|