Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Base implementation of the MMU + TLB + Exceptions #4

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
82 changes: 82 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ crc = "^1.0.0"
lazy_static = "1.0"
bitflags = "1.0"
bit_field = "0.9.0"
bitfield = "0.13.0"
enum-map = "0.4.0"
phf = "0.7.21"
phf_macros = "0.7.22"
rand = "0.5.5"

[dev-dependencies]
image = "0.13"
Expand Down
15 changes: 15 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#![feature(attr_literals)]
#![feature(stdsimd)]
#![feature(plugin)]
#![plugin(phf_macros)]
#![feature(test)]

#[macro_use]
extern crate slog;
Expand All @@ -14,9 +17,21 @@ extern crate packed_simd;
#[macro_use]
extern crate bitflags;

extern crate bit_field;

#[macro_use]
extern crate bitfield;

#[macro_use]
extern crate error_chain;

extern crate phf;

extern crate rand;

#[cfg(test)]
extern crate test;

pub mod errors {
error_chain!{
foreign_links {
Expand Down
Loading