mips32 0.1.0

low-level reg read/write for mips32
Documentation
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);
}