z80:Directives:BIG/LITTLE

From Learn @ Cemetech
Revision as of 17:50, 5 February 2016 by Maintenance script (talk | contribs) (Initial automated import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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