Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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