mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-24 21:30:09 +00:00
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
|
|||
|
};
|