Files
machine/Source/lib.rs
2021-11-16 12:15:05 -03:00

10 lines
149 B
Rust

#![allow(non_snake_case)]
mod Instructions;
pub mod Operations;
pub mod Registers;
#[path = "Machine.rs"]
mod _Machine;
pub use self::_Machine::*;