Mirror of CollapseOS
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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