Handbook Glossary
factorcode.org
emit-64 ( cell -- )


Vocabulary
bootstrap.image.private

Inputs
cellan object


Outputs
None

Definition
USING: io.binary kernel layouts namespaces ;

IN: bootstrap.image.private

: emit-64 ( cell -- )
bootstrap-cell 8 =
[ emit ] [ d>w/w big-endian get [ swap ] unless emit emit ]
if ;