summaryrefslogtreecommitdiff
path: root/src/components/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/mod.rs')
-rw-r--r--src/components/mod.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/mod.rs b/src/components/mod.rs
new file mode 100644
index 0000000..f922bcc
--- /dev/null
+++ b/src/components/mod.rs
@@ -0,0 +1,8 @@
+mod device_bus;
+mod processor;
+mod program_memory;
+mod stack;
+
+pub use device_bus::*;
+pub use program_memory::*;
+pub use stack::*;