Specifications

Saturn Macros 5-9
Psy-Q Development System
PUSHP, POPP
Description These directives allow text to be pushed into, and then popped from, a string
variable.
Syntax PUSHP string
POPP string
Remarks There is no requirement for the PUSH and corresponding POPP directives to appear
in the same macro.
Examples ifhid m
acro
dc.w ibvis
dc.w 1
pushp @
dc.w @-2-*
endm
...
ifnot macro
popp lab
goto @
pushp @
lab
endm
This means the user does not have to specify stksize when using freeframe. The user
must ensure that calls to makeframe and freeframe are balanced.