mirror of
https://github.com/guilhermewerner/machine
synced 2025-06-16 05:04:18 +00:00
10 lines
149 B
Rust
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::*;
|