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