doc updates for v2

This commit is contained in:
4am 2016-11-16 17:12:48 -05:00
parent e4477f8499
commit e8002eb5f8
1 changed files with 5 additions and 5 deletions

View File

@ -10,9 +10,9 @@
### Memory usage
When you first run 4LIVE, it will load only a small code stub in low memory (in page 3, just below the DOS 3.3 vectors). This stub will load the rest of 4LIVE directly into $D000 in LC RAM bank 1. The stub clobbers the memory range $800-$8FF in main memory.
When you first run 4LIVE, it will load only a small code stub in low memory (in pages 2 and 3, just below the DOS 3.3 vectors). The stub clobbers $800-$8FF in main memory in order to load the rest of the 4LIVE code and your data file directly into $D000 in LC RAM bank 1.
Thereafter, 4LIVE stays resident in page 3 ($300-$3CF) and in LC RAM bank 1 ($D000-$DFFF), but it does not clobber any other region in main memory.
Thereafter, 4LIVE stays resident in page 3 ($310-$3CF) and in LC RAM bank 1 ($D000-$DFFF), but it does not clobber any other region in main memory.
4LIVE never uses LC RAM bank 2 or auxiliary memory.
@ -29,10 +29,10 @@ Keyboard commands within the 4LIVE editor:
* `<Ctrl+@>` or `<Esc>` exits the 4LIVE editor.
* Arrows move freely up, down, left, and right. On an Apple II+, you can use `<Ctrl+K>` and `<Ctrl+J>` in place of up and down arrows.
* `<Return>` moves the cursor to the beginning of the next line. It does not erase any text on the current line. It will wrap around from the bottom of the screen to the top.
* `<Ctrl+N>` clears the editor screen and erases all your data.
* `<Ctrl+I>` imports the "real" text screen you were looking at before you entered the editor (like taking a text screenshot). This overwrites the entire scratchpad and erases all your data.
* `<Ctrl+N>` clears the editor screen.
* `<Ctrl+I>` imports the "real" text screen you were looking at before you entered the editor (like taking a text screenshot).
4LIVE will automatically save the contents of your scratchpad on exit. (Currently it saves to the file `_4LIVE DATA`. You will see this file in the disk catalog.)
4LIVE will automatically save the contents of your scratchpad on exit. It saves to the file `_4LIVE DATA`. You will see this file in the disk catalog.
## For developers