nesemu/src/cpu/op.h
2023-09-22 14:39:25 -04:00

11 lines
145 B
C

enum op_code {
ORA = 0x00,
AND = 0x20,
EOR = 0x40,
ADC = 0x60,
STA = 0x80,
LDA = 0xa0,
CMP = 0xc0,
SBC = 0xe0
};