use crate::*;


pub struct AssembledProgram {
    pub bytecode: Vec<u8>,
    pub symbols: Vec<AssembledSymbol>,
}

pub struct AssembledSymbol {
    pub name: String,
    pub address: usize,
    pub source: SourceSpan,
}