bootstrap-most-negative-fixnum ( -- n ) (original) (raw)

bootstrap-most-negative-fixnum ( -- n )
Factor handbook » The implementation » VM memory layouts » Bootstrap support

Prev: bootstrap-cell-bits ( -- n )
Next: bootstrap-most-positive-fixnum ( -- n )

Vocabulary
layouts

Inputs
None

Outputs

n smallest negative integer representable by a fixnum

Word description
Outputs the value for the target architecture when bootstrapping.

Definition

USING: math ;

IN: layouts

: bootstrap-most-negative-fixnum ( -- n )
bootstrap-first-bignum neg ;