summaryrefslogtreecommitdiff
path: root/enums.h
diff options
context:
space:
mode:
Diffstat (limited to 'enums.h')
-rw-r--r--enums.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/enums.h b/enums.h
index 955c27c..83cc7f0 100644
--- a/enums.h
+++ b/enums.h
@@ -156,7 +156,7 @@ enum base_isa {
INY_IMP = 0x39, /* INcrement Y register. */
CPX_IMM = 0x3A, /* ComPare X register. */
CPX_AB = 0x3C, /* CPX Absolute. */
- CPY_Z = 0x3D, /* CPY Zero Matrix. */
+ CPX_Z = 0x3D, /* CPX Zero Matrix. */
JSR_Z = 0x40, /* Jump to SubRoutine. */
XOR_IMM = 0x41, /* bitwise XOR with accumulator. */
XAB_IMP = 0x42, /* bitwise Xor with Accumulator, and B register. */
@@ -166,7 +166,7 @@ enum base_isa {
CLV_IMP = 0x48, /* CLear oVerflow flag. */
CPY_IMM = 0x4A, /* ComPare Y register. */
CPY_AB = 0x4C, /* CPY Absolute. */
- CPX_Z = 0x4D, /* CPX Zero Matrix. */
+ CPY_Z = 0x4D, /* CPY Zero Matrix. */
BPO_REL = 0x50, /* Branch if POsitive. */
LSL_IMM = 0x51, /* Logical Shift Left. */
LLB_IMP = 0x52, /* Logical shift Left accumulator by B. */