nesemu/src/cpu/op.h

11 lines
145 B
C
Raw Normal View History

2023-09-22 14:39:25 -04:00
enum op_code {
ORA = 0x00,
AND = 0x20,
EOR = 0x40,
ADC = 0x60,
STA = 0x80,
LDA = 0xa0,
CMP = 0xc0,
SBC = 0xe0
};