Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add linux mips assembler for gas ABI o32
Since the two assembly examples for MIPS are targeting the SPIM, A MIPS32 Simulator, I felt appropriate to add a Linux version for the same targeting the common o32 ABI. Can be tested on x86 Linux using qemu and cross gcc. The following is for mipsel: $ mipsel-linux-gnu-as -mips32 -EL a/Assembler_mipsel_linux.s -o /tmp/hello.o $ mipsel-linux-gnu-ld /tmp/hello.o -o hello $ qemu-mipsel ./hello
- Loading branch information