Contents|Index|Previous|Next

Assembly listing control

The GASP listing-control directives correspond to related GNU as directives.

.PRINT LIST
.PRINT NOLIST
Print control. This directive emits the GNU as directive .list or .nolist, according to its argument. See “.list” in Using as, for details on how these directives interact.

.FORM LIN= ln
.FORM COL= cols
.FORM LIN= lnCOL= cols

Specify the page size for assembly listings:
ln represents the number of lines, and cols the number of columns. You may specify either page dimension independently, or both together. If you do not specify the number of lines, GASP assumes 60 lines; if you do not specify the number of columns, GASP assumes 132 columns. (Any values you may have specified in previous instances of .FORM do not carry over as defaults.) Emits the .psize assembler directive.

.HEADING string      
Specify string as the title of your assembly listings. Emits .title "string".

.PAGE
Force a new page in assembly listings, new page. Emits .eject.