parseid 0.1.0

Parser for Asmodeus language with AST generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Abstract Syntax Tree definitions for Asmodeus

mod program;
mod instruction;
mod operand;
mod addressing_mode;
mod directive;
mod label;
mod macro_def;

pub use program::{Program, ProgramElement};
pub use instruction::Instruction;
pub use operand::Operand;
pub use addressing_mode::AddressingMode;
pub use directive::Directive;
pub use label::LabelDefinition;
pub use macro_def::{MacroDefinition, MacroCall};