START OF COMPILER

This commit is contained in:
2024-10-11 17:31:03 -04:00
parent bb3a0ad113
commit de79445ede
39 changed files with 710 additions and 94 deletions

7
src/compiler/target.rs Normal file
View File

@@ -0,0 +1,7 @@
pub trait Target {
type Reg;
}
pub trait RegType {
type Size;
}