z80:Directives:BIG/LITTLE

From Learn @ Cemetech
Jump to navigationJump to search

Switches the compiler between big and little endian modes.

Syntax

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

See Also