aboutsummaryrefslogtreecommitdiff
path: root/tobba/src/lib.rs
diff options
context:
space:
mode:
authorGravatar John Ericson <Ericson2314@Yahoo.com> 2016-06-29 15:49:33 -0700
committerGravatar John Ericson <Ericson2314@Yahoo.com> 2016-06-29 15:49:33 -0700
commitfffa3ae71951c3b8f4b2a441764a44ab8e55416e (patch)
tree9a9897b863c845d7679bebeb3c46a774ecb5e33c /tobba/src/lib.rs
parentaaf26598addf1ef47fd8422d688965f89302d21b (diff)
downloadrust-x86-fffa3ae71951c3b8f4b2a441764a44ab8e55416e.tar.gz
rust-x86-fffa3ae71951c3b8f4b2a441764a44ab8e55416e.tar.zst
rust-x86-fffa3ae71951c3b8f4b2a441764a44ab8e55416e.zip
Crudely throw everything together
Diffstat (limited to 'tobba/src/lib.rs')
-rw-r--r--tobba/src/lib.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/tobba/src/lib.rs b/tobba/src/lib.rs
deleted file mode 100644
index f18a44d..0000000
--- a/tobba/src/lib.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-#![cfg(any(target_arch="x86", target_arch="x86_64"))]
-
-#![no_std]
-#![crate_name="cpu"]
-#![crate_type="rlib"]
-#![feature(asm)]
-#![feature(associated_consts)]
-
-#[macro_use]
-extern crate bitflags;
-
-pub use cpu::*;
-
-#[cfg(target_arch="x86")]
-#[path = "x86.rs"]
-mod cpu;
-#[cfg(target_arch="x86_64")]
-#[path = "x86_64.rs"]
-mod cpu;
-
-pub mod std { pub use core::*; }