What I wish is that when a specific location has a specific value, stop and go to the debugger window.
Supposing the location is $1000 and the value to check is $80 how to do?
I've tried these commands with no success:
Code: Select all
w store $1000 if $80
w store $1000 if $1000==$80

Code: Select all
POKE4096,128
Stop if any value is written to $1000:
Code: Select all
w store $1000
Code: Select all
w store $1000 if A==$80
Code: Select all
w store $1000 if X==$80
Code: Select all
w store $1000 if Y==$80