1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![cfg_attr(target_arch="mips", feature(asm_experimental_arch))] #![no_std] pub mod cp0; pub mod gpr; #[allow(dead_code)] trait Reg { fn read() -> usize; fn write(val: usize); }