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

Added draw calls back

This commit is contained in:
Ross Wilson
2015-06-18 13:19:44 +07:00
parent ae8c1eec9f
commit f87dd8a10f

View File

@@ -71,8 +71,8 @@ def doDEIMByte(byte):
DY -= (byte & 0x03)
else:
DY += (byte & 0x03)
# if byte & 0x40:
# display.draw(0, prevDX, prevDY, DX, DY)
if byte & 0x40:
display.draw(0, prevDX, prevDY, DX, DY)
else: # micro instructions
if byte & 0x40:
Mode = MODE_NORMAL
@@ -250,7 +250,7 @@ def i_DLVH(word1):
else:
DY += N
# display.drawline(dotted, prevDX, prevDY, DX, DY)
display.draw(dotted, prevDX, prevDY, DX, DY)
Trace.dtrace('DLVH')
return 3