.ALTERNATE
Use the alternate macro syntax henceforth in the assembly. See Alternate
macro syntax.
.ORG
This command is
recognized, but not yet implemented. GASP generates an error message for
programs that use .ORG.
You may specify the argument
s
in lower case (any of bqdh)
with the same effects.
.EXPORT name
.GLOBAL name
Declare name
global (emits .global
name).
The two directives are synonymous.
.PROGRAM
No effect: GASP
accepts this directive, and silently ignores it.
.END
Mark end of each
preprocessor file. GASP issues a warning if it reaches end of file without
seeing this command.
.INCLUDE "str"
Preprocess the
file named by str,
as if its contents appeared where the .INCLUDE
directive does. GASP imposes a maximum limit of 30 stacked include
files, as a sanity check.
.ALIGN size
Evaluate the
absolute expression size,
and emit the assembly instruction .align
size
using the result.