Posted: Wed Oct 25, 2023 3:51 am Post subject: how to set data conditional breakpoint
Question1:What programming language is used in setting conditional breakpoints?
Question2:I want to set a data condition breakpoint in the specified memory address, such as setting a data condition breakpoint at the memory address 0014CF68. The interrupt condition is to interrupt when the value of the memory address is 12 34 56 78 9A BC DE FF. What should I do?
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
Posted: Wed Oct 25, 2023 5:43 am Post subject:
go to advanced options and pause the process
go to memview, hexview and dragselect the bytes you wish to watch
rightclick the selection and choose data breakpoint->break on write
go to view->breakpointlist and righclick on the newly set breakpoint and choose "set/change condition"
Set it to a easy condition and set the condition to:
Code:
readQword(address)==0xffdebc9a78563412
now go to advanced options and resume the process
Once the address contains the value 0xffdebc9a78563412 it will break _________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping
Can you give me a more detailed usage example? I attempted to interrupt a 32-bit integer variable with a value of 65 in my own testing program. This is my conditional interrupt:
Code:
readInteger(7FF768DD8040) == 0x41000000
When the value is 65, CE failed to interrupt successfully
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum