Go to the first, previous, next, last section, table of contents.
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 section `.list
' in Using as, for details on how these directives
interact.
.FORM LIN=ln
-
.FORM COL=cols
-
.FORM LIN=ln COL=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. Emits `.eject'.
Go to the first, previous, next, last section, table of contents.