Page ejection directive Format .PAGE
1 – Description
.PAGE forces a new page in the listing. The directive itself is also printed in the listing and begins the new page. .PAGE in a macro definition is ignored. The paging operation is performed only during macro expansion. If the .PAGE directive occurs during macro expansion, text beginning with the original macro invocation line appears at the top of a new page.
2 – Example
.MACRO SKIP ; macro definition with .PAGE .PAGE ; .ENDM SKIP ; .PSECT A,NOEXE ; .BLKW 10 ; SKIP ; In the listing file, a form feed ; will be inserted here