mirror of
https://github.com/guilhermewerner/machine
synced 2025-06-16 13:14:18 +00:00
Update heap, stack and opcodes
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
#![allow(dead_code)]
|
||||
#![allow(non_snake_case)]
|
||||
|
||||
mod Instructions;
|
||||
@ -6,6 +7,18 @@ 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::*;
|
||||
|
||||
#[path = "Heap.rs"]
|
||||
mod _Heap;
|
||||
pub use self::_Heap::*;
|
||||
|
||||
#[path = "Limits.rs"]
|
||||
mod _Limits;
|
||||
pub use self::_Limits::*;
|
||||
@ -14,10 +27,6 @@ pub use self::_Limits::*;
|
||||
mod _Machine;
|
||||
pub use self::_Machine::*;
|
||||
|
||||
#[path = "Memory.rs"]
|
||||
mod _Memory;
|
||||
pub use self::_Memory::*;
|
||||
|
||||
#[path = "Registry.rs"]
|
||||
mod _Registry;
|
||||
pub use self::_Registry::*;
|
||||
|
Reference in New Issue
Block a user