Mirror of CollapseOS
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

17 rindas
756B

  1. When a word modifies the buffer, it sets the buffer as dirty
  2. by calling BLK!!. BLK@ checks, before it reads its buffer,
  3. whether the current buffer is dirty and implicitly calls BLK!
  4. when it is.
  5. The index of the block currently in memory is kept in BLK>.
  6. Many blocks contain code. That code can be interpreted through
  7. LOAD. Programs stored in blocks frequently have "loader blocks"
  8. that take care of loading all blocks relevant to the program.
  9. Blocks spanning multipls disks are tricky. If your media isn't
  10. large enough to hold all Collapse OS blocks in one unit, you'll
  11. have to make it span multiple disks. Block reference in
  12. informational texts aren't a problem: When you swap your disk,
  13. you mentally adjust the block number you fetch. (cont.)