0

On setting breakpoint using the command, Break.set function

And the breakpoint is set at the start of the function. We want to get the address of the breakpoint.

How can we get the address of the breakpoint?

boon
  • 345
  • 1
  • 4
  • 11

1 Answers1

0

Break.List opens a window which shows all breakpoints

sYmbol.RANGE(<symbol>) can be used to get the address (range) of a symbol, e.g.

AREA
PRINT sYmbol.RANGE(<symbol>)
dev15
  • 665
  • 3
  • 14
  • Thanks, we were able to print the address range of a function. We are working with Python, to automate the test. We are able to keep breakpoint in a particular line of code in a file using, t32api.T32_Cmd("Break.Set func+20'")or , t32api.T32_Cmd("Break.Set func\0+4"). Is it possible to get the address of the breakpoint in a variable? We are trying to verify the breakpoint address that is currently set with the address in the program pointer. – boon Apr 22 '19 at 07:35