Mirror of CollapseOS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

7 lignes
357B

  1. STACK OVERFLOW PROTECTION: To avoid having to check for stack
  2. underflow after each pop operation (which can end up being
  3. prohibitive in terms of costs), PS_ADDR should be set to
  4. at least 6 bytes before its actual limit. 6 bytes because we
  5. seldom have words requiring more than 3 items from the stack.
  6. Then, at each "exit" call we check for stack underflow.