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

  1. Visual Editor
  2. This editor, unlike the Block Editor (B100), is grid-based
  3. instead of being command-based. It requires the AT-XY, COLS
  4. and LINES words to be implemented. If you don't have those,
  5. use the Block Editor.
  6. It is loaded with "125 LOAD" and invoked with "VE". Note that
  7. this also fully loads the Block Editor.
  8. This editor uses 19 lines. The top line is the status line and
  9. it's followed by 2 lines showing the contents of IBUF and
  10. FBUF (see B100). There are then 16 contents lines. The contents
  11. shown is that of the currently selected block.
  12. (cont.)