13.2.8 Debug Toolbar
The Debug toolbar currently contains button icons for the following functions. These functions are also on the Debug menu.
Icon | Icon Text | Function |
---|---|---|
![]() | Finish Debugger Session | Ends the debugging session. |
![]() | Pause | Pauses debugging. Use Continue to resume. |
![]() | Reset | Runs the current project to the cursor’s location in the file and stop program execution. |
![]() | Continue | Resumes debugging until the next breakpoint or the end of the program is reached. |
![]() | Step Over | Executes one source line of a program. If the line is a function call, executes the entire function then stops. |
![]() | Step Into | Executes one source line of a program. If the line is a function call, executes the program up to the function’s first statement and stops. |
![]() | Step Out | Executes one source line of a program. If the line is a function call, executes the functions and returns control to the caller. |
![]() | Run to Cursor | Runs the current project to the cursor’s location in the file and stop program execution. |
![]() | Set PC at cursor | Sets the program counter (PC) value to the line address of the cursor. |
![]() | Focus Cursor at PC | Moves the cursor to the current PC address and centers this address in the window. |