mirror of
https://github.com/hazemKrimi/hack-assembler.git
synced 2026-05-01 18:20:28 +00:00
10 lines
164 B
Rust
10 lines
164 B
Rust
pub enum Instruction {
|
|
AInstruction {
|
|
decimal: String
|
|
},
|
|
CInstruction {
|
|
dest: String,
|
|
comp: String,
|
|
jump: String
|
|
}
|
|
} |