hephasm 0.1.0

Assembler for Asmodeus architecture with macro support and extended instructions
Documentation
1
2
3
4
5
6
7
8
9
//! Assembly passes implementation

mod first_pass;
mod second_pass;  
mod third_pass;

pub use first_pass::FirstPass;
pub use second_pass::SecondPass;
pub use third_pass::ThirdPass;