aboutsummaryrefslogtreecommitdiff
path: root/src/instructions.rs
blob: f5884dcbc9a7c3779174a248bd28d12b0b2c4a6b (plain)
1
2
3
4
5
6
7
8
9
#[repr(u8)]
pub enum Instruction {
    MOV = 0x01,
    ADD = 0x02,
    SUB = 0x03,
    JMP = 0x04,
    JZ = 0x05,
    HLT = 0xFF,
}