1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-06-08 07:29:32 +00:00
emu6502/opcodes.h

12 lines
223 B
C
Raw Normal View History

#pragma once
#define NOP 0x00
#define LXI 0x01
#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
#define ORA_IND_Y 0x11