From 2f9d38f9f9d6f17bc274934b23915417012eeed8 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Fri, 29 May 2020 22:38:34 -0400 Subject: Make JSL, JSR absolute, and remove RTL. The reason for doing this was because JSL, and RTL are redundent, as they both do the same thing as JSR, and RTS. --- tables.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tables.h') diff --git a/tables.h b/tables.h index 6a95887..45c0910 100644 --- a/tables.h +++ b/tables.h @@ -24,8 +24,8 @@ static const uint8_t optype[0x100] = { [PLB ] = IMM, [INC_AB ] = ABS, [INC_Z ] = ZM, - [JSR ] = ZM, - [JSL ] = ABS, + [JSR_Z ] = ZM, + [JSR ] = ABS, [AND ] = IMM, [ABA ] = IMPL, [AND_AB ] = ABS, @@ -133,7 +133,6 @@ static const uint8_t optype[0x100] = { [CPB_IY ] = INDY, [CPB_IX ] = INDX, [RTS ] = IMPL, - [RTL ] = IMPL, [CMP ] = IMM, [CAB ] = IMPL, [CMP_AB ] = ABS, -- cgit v1.2.3-13-gbd6f