mirror of
https://github.com/guilhermewerner/machine
synced 2025-06-16 13:14:18 +00:00
32 bits
This commit is contained in:
@ -1,9 +1,26 @@
|
||||
#![allow(non_snake_case)]
|
||||
|
||||
mod Instructions;
|
||||
|
||||
pub mod Operations;
|
||||
pub mod Registers;
|
||||
pub mod Types;
|
||||
|
||||
#[path = "Limits.rs"]
|
||||
mod _Limits;
|
||||
pub use self::_Limits::*;
|
||||
|
||||
#[path = "Machine.rs"]
|
||||
mod _Machine;
|
||||
pub use self::_Machine::*;
|
||||
|
||||
#[path = "Memory.rs"]
|
||||
mod _Memory;
|
||||
pub use self::_Memory::*;
|
||||
|
||||
#[path = "Registry.rs"]
|
||||
mod _Registry;
|
||||
pub use self::_Registry::*;
|
||||
|
||||
#[path = "Stack.rs"]
|
||||
mod _Stack;
|
||||
pub use self::_Stack::*;
|
||||
|
Reference in New Issue
Block a user