Skip to navigation


Text: plf2

[Apple II version]

Name: plf2 [Show more] Type: Subroutine Category: Text Summary: Print text followed by a newline and indent of 6 characters
Context: See this subroutine in context in the source code References: This subroutine is called as follows: * STATUS calls plf2

Print a text token followed by a newline, and indent the next line to text column 6.
Arguments: A The text token to be printed
.plf2 JSR plf ; Print the text token in A followed by a newline LDA #6 ; Set A = 6 to demote column 6 IF _IB_DISK OR _4AM_CRACK STA XC ; Move the text cursor to column 6 RTS ; Return from the subroutine ELIF _SOURCE_DISK JMP DOXC ; Move the text cursor to column 6 and return from the ; subroutine using a tail call ENDIF