summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: f04b18dc77da397416b3733a8e9a3ea9abe3cace (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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,
}