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. )