Brass Core Plugins

big/little

Switches the compiler between big and little endian modes.

Syntax

.little
.big

Remarks

There is no way to ensure that third-party plugins respect the compiler's endian mode. If you encounter problems with a particular plugin, please contact its author.

Examples

.big
.int $123456 ; Outputs $12, $34, $56.
.little
.int $123456 ; Outputs $56, $34, $12.