Update heap, stack and opcodes

This commit is contained in:
Werner
2021-11-29 20:43:59 -03:00
parent 03e43f39ce
commit 38236f0ad5
10 changed files with 396 additions and 180 deletions

View File

@ -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::*;