luaqemu
luaqemu copied to clipboard
watchpoint bug
in the file hw/arm/luaarm.c
you write flags |= BP_STOP_BEFORE_ACCESS;
before you insert the flags in the function util_watchpoint_insert
. However, you didn't write flags |= BP_STOP_BEFORE_ACCESS;
in the function util_watchpoint_remove
, thus users could not find matching matching point in the for loop.