Mirror of CollapseOS
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

16 řádky
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. )