Mirror of CollapseOS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

16 строки
566B

  1. ( RLWORD pre-comment
  2. Relink a word with specified offset. If it's not of the type
  3. "compiled word", ignore. If it is, advance in word until a2
  4. is met, and for each word that is above ol, reduce that
  5. reference by o.
  6. Arguments: a1: wordref a2: word end addr o: offset to apply
  7. ol: offset limit. don't apply on refs under it.
  8. The 0x0e and 0x2b check at the beginning is to ensure we have
  9. either a compiledWord or a doesWord. If we don't, we do
  10. nothing. The further 0x2b check is because if we have a
  11. doesWord, we start 2 bytes later.
  12. )