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. --- disasm.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'disasm.h') diff --git a/disasm.h b/disasm.h index 8fe2b4c..ce35ad3 100644 --- a/disasm.h +++ b/disasm.h @@ -23,7 +23,7 @@ static const char *opname[0x100] = { [0x1C] = "INC a", [0x1D] = "INC zm", [0x1E] = "JSR zm", - [0x20] = "JSL a", + [0x20] = "JSR a", [0x21] = "AND #", [0x22] = "ABA", [0x24] = "AND a", @@ -131,7 +131,6 @@ static const char *opname[0x100] = { [0xAC] = "CPB iny", [0xAD] = "CPB inx", [0xAE] = "RTS", - [0xB0] = "RTL", [0xB1] = "CMP #", [0xB2] = "CAB", [0xB4] = "CMP a", -- cgit v1.2.3-13-gbd6f