1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-07-22 21:28:54 +00:00
emu6502/opcodes.h

13 lines
244 B
C
Raw Normal View History

#pragma once
2019-04-13 23:50:46 +00:00
#define BRK 0x00
#define ORA_IMM 0x09
#define ORA_ZP 0x05
#define ORA_ZP_X 0x15
#define ORA_ABS 0x0D
#define ORA_ABS_X 0x1D
#define ORA_ABS_Y 0x19
#define ORA_IND_X 0x01
2019-04-13 23:50:46 +00:00
#define ORA_IND_Y 0x11
#define NOP 0xEA
#define LDA_IMM 0xA9