diff options
Diffstat (limited to 'enums.h')
-rw-r--r-- | enums.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -23,8 +23,8 @@ enum base_isa { PLB = 0x1A, /* PuLl B register to stack. */ INC_AB = 0x1C, /* INC Absolute. */ INC_Z = 0x1D, /* INC Zero Matrix. */ - JSR = 0x1E, /* Jump to SubRoutine. */ - JSL = 0x20, /* Jump to Subroutine Long. */ + JSR_Z = 0x1E, /* Jump to SubRoutine. */ + JSR = 0x20, /* JSR Absolute. */ AND = 0x21, /* bitwise AND with accumulator. */ ABA = 0x22, /* bitwise And with Accumulator, and B register. */ AND_AB = 0x24, /* AND Absolute. */ @@ -132,7 +132,6 @@ enum base_isa { CPB_IY = 0xAC, /* CPB Indirect Indexed. */ CPB_IX = 0xAD, /* CPB Indexed Indirect. */ RTS = 0xAE, /* ReTurn from Subroutine. */ - RTL = 0xB0, /* ReTurn from subroutine Long. */ CMP = 0xB1, /* CoMPare accumulator. */ CAB = 0xB2, /* Compare Accumulator, and B. */ CMP_AB = 0xB4, /* CMP Absolute. */ |