1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! olympia_core provides definitions of fundamental types for
//! olympia that are required by both olympia_core and
//! olympia_derive.

pub mod address;
pub mod instructions;
pub mod registers;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}