From eb219596fea56e81b8b577eadd9d38b020c548e7 Mon Sep 17 00:00:00 2001 From: Ross Wilson Date: Tue, 24 May 2016 09:45:43 +0700 Subject: [PATCH] Implemented DSTS scale and MSB/LSB handling --- pymlac/DisplayCPU.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pymlac/DisplayCPU.py b/pymlac/DisplayCPU.py index 7b5b6ae..554815b 100644 --- a/pymlac/DisplayCPU.py +++ b/pymlac/DisplayCPU.py @@ -164,6 +164,7 @@ class DisplayCPU(object): tracestr = self.doDEIMByte(instruction >> 8) if self.Mode == self.MODE_DEIM: tracestr += ', ' + self.doDEIMByte(instruction & 0xff, True) + log('execute_one_instruction: tracestr=%s' % tracestr) return (1, tracestr) opcode = instruction >> 12