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

More debug on ROM write

This commit is contained in:
Ross Wilson
2015-08-23 10:11:23 +07:00
parent 6503c0a901
commit 9046998ed4

View File

@@ -8,6 +8,7 @@ Emulate the Imlac Memory.
import struct
from Globals import *
import Trace
class Memory(object):
@@ -261,7 +262,7 @@ class Memory(object):
address = self.memory[address] & ADDRMASK
if self.using_rom and self.ROM_START <= address <= self.ROM_END:
Trace.comment('Attempt to write to ROM')
Trace.comment('Attempt to write to ROM address %07o' % address)
return
try: