mirror of
https://github.com/guilhermewerner/machine
synced 2025-06-16 21:24:18 +00:00
Working...
This commit is contained in:
@ -3,10 +3,15 @@
|
||||
|
||||
mod Instructions;
|
||||
|
||||
pub mod Mnemonics;
|
||||
pub mod Operations;
|
||||
pub mod Payload;
|
||||
pub mod Types;
|
||||
|
||||
#[path = "Assembly.rs"]
|
||||
mod _Assembly;
|
||||
pub use self::_Assembly::*;
|
||||
|
||||
#[path = "Frame.rs"]
|
||||
mod _Frame;
|
||||
pub use self::_Frame::*;
|
||||
@ -30,3 +35,11 @@ pub use self::_Registry::*;
|
||||
#[path = "Stack.rs"]
|
||||
mod _Stack;
|
||||
pub use self::_Stack::*;
|
||||
|
||||
#[path = "Instruction.rs"]
|
||||
mod _Instruction;
|
||||
pub use self::_Instruction::*;
|
||||
|
||||
#[path = "InstructionTable.rs"]
|
||||
mod _InstructionTable;
|
||||
pub use self::_InstructionTable::*;
|
||||
|
Reference in New Issue
Block a user