mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-23 15:29:24 +00:00
88d3e4fd47
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
23 lines
300 B
C++
23 lines
300 B
C++
#pragma once
|
|
|
|
namespace EightBit {
|
|
enum AddressingMode {
|
|
Illegal,
|
|
Implied,
|
|
Accumulator,
|
|
Immediate,
|
|
Relative,
|
|
XIndexed,
|
|
IndexedY,
|
|
ZeroPage,
|
|
ZeroPageX,
|
|
ZeroPageY,
|
|
Absolute,
|
|
AbsoluteX,
|
|
AbsoluteY,
|
|
AbsoluteXIndirect,
|
|
Indirect,
|
|
ZeroPageIndirect,
|
|
ZeroPageRelative
|
|
};
|
|
} |