refactor asm more

This commit is contained in:
2025-03-23 14:47:05 -04:00
parent 9690523ee8
commit aa07ee638c
21 changed files with 329 additions and 350 deletions

View File

@@ -0,0 +1,13 @@
mod asm;
mod compile;
mod reg;
mod single;
mod instr;
use crate::util::BitsI32;
use single::*;
pub use asm::*;
pub use compile::*;
pub use reg::*;
pub use instr::*;