phoron_asm 1.0.2

A Jasmin-compatible Assembler for the JVM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `Phoron` is a [Jasmin](https://jasmin.sourceforge.net/) compatible assembler for the JVM.
//!
//! `phoron_asm` provides the actual assembler for the assembly language whereas `phoron_core`
//! handles the low-level `class` file serialisation and deserialisation.
//!

pub mod ast;
pub mod codegen;
pub mod cp_analyzer;
pub mod diagnostics;
pub mod lexer;
pub mod parser;
pub mod sourcefile;