Search found 1 match

by atsampson
Wed Apr 08, 2026 12:10 am
Forum: Dragon General
Topic: Can XRoar do this?
Replies: 2
Views: 2369

Re: Can XRoar do this?

In MAME's debugger, how about using a watchpoint that catches all memory accesses, but with a condition that limits it to the range you want by reading the pointer? e.g.

Code: Select all

wp 0,10000,w,wpaddr >= w@1d && wpaddr < w@1d + 100,{ printf "wrote %04x = %02x\n",wpaddr,wpdata }