arch refactor + backend ir start

This commit is contained in:
2026-06-06 21:00:39 -04:00
parent 0ac7c5cc02
commit 4587f687b9
22 changed files with 547 additions and 661 deletions
+6 -11
View File
@@ -1,14 +1,9 @@
pub mod arch;
pub mod elf;
mod program;
mod symbol;
mod elf;
mod ir;
mod link;
mod test;
pub use arch::*;
pub use ir::*;
pub use link::*;
pub use test::*;
use program::*;
pub enum Asm {
X86_64(x86_64::Asm),
}