uni: watchlow filters at record time

This commit is contained in:
SashegDev
2026-09-14 11:00:25 +00:00
parent c5043cb966
commit b621bf1c2c
+3 -1
View File
@@ -597,7 +597,9 @@ def main():
wlolog = [] wlolog = []
def hook_wlo(mu, access, addr, size, value, data): def hook_wlo(mu, access, addr, size, value, data):
if len(wlolog) < 60: if addr + size <= _wlo or addr >= _whi:
return
if len(wlolog) < 200:
try: try:
pc = mu.reg_read(_PC4) pc = mu.reg_read(_PC4)
except Exception: except Exception: