mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-20 08:32:00 +00:00
105032f08a
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
22 lines
259 B
C
22 lines
259 B
C
#pragma once
|
|
|
|
enum AddressingMode {
|
|
Illegal,
|
|
Implied,
|
|
Accumulator,
|
|
Immediate,
|
|
Relative,
|
|
XIndexed,
|
|
IndexedY,
|
|
ZeroPage,
|
|
ZeroPageX,
|
|
ZeroPageY,
|
|
Absolute,
|
|
AbsoluteX,
|
|
AbsoluteY,
|
|
AbsoluteXIndirect,
|
|
Indirect,
|
|
ZeroPageIndirect,
|
|
ZeroPageRelative
|
|
};
|