mirror of
https://github.com/jborza/emu6502.git
synced 2025-02-16 17:30:27 +00:00
13 lines
244 B
C
13 lines
244 B
C
#pragma once
|
|
|
|
#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
|
|
#define ORA_IND_Y 0x11
|
|
#define NOP 0xEA
|
|
#define LDA_IMM 0xA9 |