From 81e42e41da5a664aa528ad4f9284119456b15817 Mon Sep 17 00:00:00 2001 From: yenatch Date: Tue, 14 May 2013 21:53:19 -0400 Subject: [PATCH] gbz80disasm: reti is an ender --- extras/gbz80disasm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extras/gbz80disasm.py b/extras/gbz80disasm.py index 354490e4f..634509973 100644 --- a/extras/gbz80disasm.py +++ b/extras/gbz80disasm.py @@ -542,10 +542,11 @@ for line in temp_opt_table: del line end_08_scripts_with = [ +0xc9, #ret +0xd9, #reti 0xe9, #jp hl #0xc3, #jp ##0x18, #jr -0xc9, #ret ###0xda, 0xe9, 0xd2, 0xc2, 0xca, 0xc3, 0x38, 0x30, 0x20, 0x28, 0x18, 0xd8, 0xd0, 0xc0, 0xc8, 0xc9 ] relative_jumps = [0x38, 0x30, 0x20, 0x28, 0x18, 0xc3, 0xda, 0xc2]