started assembler logic rewrite

This commit is contained in:
2026-03-13 16:39:58 +00:00
parent 6da473c272
commit 06c6ba534d
15 changed files with 359 additions and 27 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
pub mod instructions;
pub mod register;
pub mod asm;
pub mod isa;
pub mod prelude {
pub use crate::instructions::Instruction;
pub use crate::register::Register;
pub use crate::isa::instructions::Instruction;
pub use crate::isa::register::Register;
}