Add a fully functioning disassemblere?

This commit is contained in:
2018-06-01 23:43:33 +02:00
parent 0b8e28fb22
commit c6ac7ce4f7
5 changed files with 466 additions and 36 deletions

View File

@@ -1,8 +1,9 @@
extern crate core;
pub mod ijvmreader;
pub mod binread;
pub mod block;
pub mod ops;
pub mod machine;
pub mod stack;
pub mod pool;
pub mod frame;
@@ -14,4 +15,8 @@ pub mod heap;
type Result<T> = ::std::result::Result<T, &'static str>;
pub mod machine;
pub use machine::Machine;
pub mod disassembler;
pub use disassembler::{Disassembler, Disassembly};