From ff078dfd896c3e78449244400cfddae90827a533 Mon Sep 17 00:00:00 2001 From: Rob McMullen Date: Fri, 4 Mar 2016 11:44:14 -0800 Subject: [PATCH] 65816: fixed max instruction length --- 65816.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/65816.py b/65816.py index 7647eef..216573d 100644 --- a/65816.py +++ b/65816.py @@ -8,7 +8,7 @@ # AddressWidth = 16/24 # 16-bit or 24-bit addresses depending on processor mode # Maximum length of an instruction (for formatting purposes) -maxLength = 3 +maxLength = 4 # Leadin bytes for multibyte instructions leadInBytes = []