emit-uint ( n -- )


Vocabulary
compiler.codegen.gc-maps

Inputs
nan integer


Outputs
None

Word description
Emits an unsigned 32 bit integer to the make sequence being created. The word takes care of ensuring that the byte order is correct for the current machine.

Examples
USING: compiler.codegen.gc-maps make prettyprint ; [ 0xffff emit-uint ] B{ } make .
B{ 255 255 0 0 }


Definition