Brass Core Plugins

align

Sets the current program counter value to the next multiple of boundary.

Syntax

.align boundary

Remarks

If the program counter already sits on a boundary it will not be changed.

Examples

$ = 512
.align 256
.echoln $ ; Outputs 512.
$ = 10
.align 256
.echoln $ ; Outputs 256.