diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -1,9 +1,8 @@ -#![feature(as_slice)] -mod isa; -mod binary; -mod memory; -mod cache; -mod simulator; +pub mod isa; +pub mod binary; +pub mod memory; +pub mod cache; +pub mod simulator; #[test] fn it_works() { |