SL

Displays the return stack and its depth at each internal and external subroutine, and external function.

Syntax

SL

Display

For each CALL or GOSUB statement, or external function call, the current program name and line number are displayed, prefixed by C (CALL), G (GOSUB) or F (function call). The current routine is at the top, prefixed by a chevron. If an INCLUDE statement is encountered, the actual line in the source program is shown in square brackets, appended to the line. The current depth of the stack at each subroutine and external function is shown at the end of each line.

Example

*SL
> SSUB2 11    1
G SSUB2 2    2
C SSUB1 10    3
G SSUB1 2    4
C SPROG 177, [11]    5
G SPROG 173, [7]    6
G SPROG 169, [3]    7