mips 0.2.1

Low-level abstraction of MIPS processors
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Rust library for low-level abstraction of MIPS32 processors

#![feature(asm)]
#![no_std]
#![feature(nll)]
#![cfg_attr(feature = "inline-asm", feature(asm))]

#[macro_use]
extern crate bitflags;

pub mod instructions;
pub mod registers;
pub mod interrupts;
pub mod tlb;
pub mod addr;
pub mod paging;