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
666B

  1. System variables
  2. There are some core variables in the core system that are
  3. referred to directly by their address in memory throughout the
  4. code. The place where they live is configurable by the RAMSTART
  5. constant in conf.fs, but their relative offset is not. In fact,
  6. they're mostly referred to directly as their numerical offset
  7. along with a comment indicating what this offset refers to.
  8. This system is a bit fragile because every time we change those
  9. offsets, we have to be careful to adjust all system variables
  10. offsets, but thankfully, there aren't many system variables.
  11. Here's a list of them:
  12. (cont.)