1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00

Implemented DSTS scale and MSB/LSB handling

This commit is contained in:
Ross Wilson
2016-05-24 09:45:43 +07:00
parent bec9377d2a
commit eb219596fe

View File

@@ -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