Initial commit

This commit is contained in:
Hazem Krimi
2024-03-08 14:40:23 +01:00
commit 2117f916c9
7 changed files with 160 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
pub enum Instruction {
AInstruction {
decimal: String
},
CInstruction {
dest: String,
comp: String,
jump: String
}
}