diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2023-12-24 19:54:50 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2023-12-24 19:54:50 +1300 |
commit | 2b16a99ba3d1ba6536a1db28471288a0c2274a71 (patch) | |
tree | 7df2fc16f6cf81a4d7c313a6c65e53183c721d9d /src/lib.rs | |
download | bedrock-core-2b16a99ba3d1ba6536a1db28471288a0c2274a71.zip |
First commitv1.0.0
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..f04b18d --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,16 @@ +mod device_bus; +mod memory; +mod processor; +mod stack; + +pub use device_bus::*; +pub use memory::*; +pub use processor::*; +pub use stack::*; + +#[derive(Copy, Clone, Debug)] +pub enum Signal { + Debug, + Pause, + Halt, +} |