vm-stack-space ( -- n ) (original) (raw)

vm-stack-space ( -- n )

Vocabulary
cpu.architecture

Inputs
None

Outputs

n a number

Word description
Parameter space to reserve in anything making VM calls. Why is this set to 16 on x86.32?

Definition

USING: system ;

IN: cpu.architecture

HOOK: vm-stack-space cpu ( -- n )

Methods

USING: cpu.architecture kernel ;

M: object vm-stack-space 0 ;