Specifications
Saturn General Assembler Directives 4-21
Psy-Q Development System
CNOP
Description Resets the program counter to a specified offset from the specified size boundary.
Syntax CNOP offset,size boundary
See Also EVEN
Remarks As with the EVEN directive, in code containing SECTIONs, the Assembler does not
allow the program counter to be reset to a size boundary greater than the alignment
already set for that section. Therefore, a CNOP statement, with a size boundary of 2,
is not allowed in a section that is byte-aligned.
Examples section.l prime
Firstoff = 512
Firstsize = 2
...
cnop Firstoff,Firstsize
sets the program counter to 512 bytes above the next word boundary.
Note that:
cnop 0,2
performs as an EVEN statement.