pub fn assemble(
code: ExprResult,
base_env: &Env,
) -> Result<ExprResult, AssemblerError>
Expand description
Assemble a simple listing with no directives. Warning !!! As the env is read only, we cannot assemble directly inside To overcome that, we use a bank in a copied Env. It has not been deeply tested