Compare commits

...

33 Commits
v2.0 ... master

Author SHA1 Message Date
4am
0528bef255
Merge pull request #22 from peterferrie/master
really preserve swap during initial header load
2019-03-18 18:31:32 -04:00
Peter Ferrie
058ad84ca0 really preserve swap during initial header load 2019-03-18 15:28:46 -07:00
4am
ed27b90a7f
Merge pull request #21 from peterferrie/master
add memory-search option
2018-05-25 08:26:44 -04:00
Peter Ferrie
093776ae8a avoid race condition 2018-04-10 21:25:12 -07:00
Peter Ferrie
c3238a4002 add memory-search option 2018-04-10 11:42:14 -07:00
4am
1b8e0e3083 r4 2017-01-23 14:00:25 -05:00
4am
e479eac6af r4 2017-01-23 13:59:35 -05:00
4am
30af162c18 Merge pull request #20 from peterferrie/master
fix the header corruption on single-page autosave, fix importa nd page 3 state, faster l/r scroll
2017-01-23 13:56:57 -05:00
Peter Ferrie
f7f330b6e3 fix import and page 3 state, faster l/r scroll 2017-01-22 21:32:23 -08:00
Peter Ferrie
d93528716b fix the header corruption on single-page autosave 2017-01-20 13:38:30 -08:00
4am
1a16365dc5 prep for revision 03 release 2017-01-12 22:24:11 -05:00
4am
652f6e5b21 Merge pull request #19 from peterferrie/master
fix case mapping on II+
2017-01-12 22:06:51 -05:00
Peter Ferrie
c12611251a fix case mapping on II+ 2017-01-12 19:05:15 -08:00
4am
43bfa0a80d Merge pull request #18 from peterferrie/master
correct page display, limit to 99 pages
2016-12-04 09:05:51 -05:00
Peter Ferrie
d100bf17b3 cosmetic, suppress redundant warnings 2016-12-03 14:03:58 -08:00
Peter Ferrie
0666fd5af0 work around the Diversi-DOS bugs...
...of which there are many, but it works!
2016-12-02 11:28:29 -08:00
Peter Ferrie
b22f6a5dc8 don't allow add until page 1 is written to disk 2016-11-25 16:22:03 -08:00
Peter Ferrie
de691da719 correct page display, limit to 99 pages 2016-11-25 10:50:23 -08:00
4am
4e5f2c0cf3 Merge pull request #13 from peterferrie/master 2016-11-24 12:46:54 -05:00
Peter Ferrie
e0a89cf88e a bit smaller 2016-11-23 15:17:30 -08:00
Peter Ferrie
ff6e099b31 more size optimisation 2016-11-22 23:30:18 -08:00
Peter Ferrie
be7c7e431a size optimisation. don't look. 2016-11-22 23:17:51 -08:00
Peter Ferrie
7239f37a2c cosmetic fixes, reduced banked size 2016-11-22 22:40:43 -08:00
Peter Ferrie
1c1541a1a7 work around critical DiversiDOS bug
bug: read after write without intervening close results in *write*
instead of read!
also document expected active registers for functions which accept them
2016-11-22 21:20:20 -08:00
Peter Ferrie
bf6d9450ed correct serial number 2016-11-22 16:41:07 -08:00
Peter Ferrie
a092630ed0 multi-screen and page-numbering 2016-11-22 16:39:34 -08:00
Peter Ferrie
63e8b7a8f5 highlight with inverse not flash 2016-11-18 11:05:16 -08:00
4am
dc19f8f8ec Merge pull request #12 from peterferrie/master
switch to key-dispatch table, add line highlighting
2016-11-17 21:59:16 -05:00
Peter Ferrie
1606caf407 switch to key-dispatch table, add line highlighting
dispatch table by key allows more keys without causing near-branch
issues;
line highlighting has "smart" II+ cursor that flashes over inverse space
also shrink loader a bit
2016-11-17 16:53:00 -08:00
4am
5e33176d29 update strings for v3 2016-11-17 11:59:42 -05:00
4am
3782dc9a1c Merge pull request #11 from peterferrie/master
Master
2016-11-17 08:58:26 -05:00
Peter Ferrie
829b9ae9f5 load installer over loader to free page 8 2016-11-16 22:53:50 -08:00
Peter Ferrie
282d890abd refactor for smaller code, back under 2kb 2016-11-16 21:32:28 -08:00
3 changed files with 1207 additions and 335 deletions

View File

@ -1,6 +1,6 @@
# 4LIVE
4LIVE is a scratchpad for keeping notes while you're working on your Apple II under DOS 3.3. The current version allows you to keep a 40x23 screen of freeform text, accessible at any time that DOS is in memory.
4LIVE is a scratchpad for keeping notes while you're working on your Apple II under DOS 3.3. The current version ("revision 03") allows you to keep up to 99 separate screens of freeform text, accessible at any time that DOS is in memory.
## System requirements
@ -10,15 +10,11 @@
### Memory usage
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 ($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.
When you first run 4LIVE, it will load only a small code stub in low memory, at $0232. This stub will load the rest of 4LIVE directly into LC RAM bank 1. Thereafter, 4LIVE uses $0309-$03CF in main memory and $D000-$DFFF in LC RAM bank 1. 4LIVE never uses LC RAM bank 2, auxiliary memory, or any other region in main memory.
## For users
Install 4LIVE by typing `BRUN _4LIVE` from the BASIC prompt, or by executing it as the last line of your `HELLO` program.
Install 4LIVE by typing `BRUN _4LIVE` from the BASIC prompt, or by executing it in your `HELLO` program.
```10 PRINT CHR$(4);"BRUN _4LIVE"```
@ -29,10 +25,14 @@ 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.
* `<Ctrl+I>` imports the "real" text screen you were looking at before you entered the editor (like taking a text screenshot).
* `<Ctrl+B>` toggles highlighting of the current line.
* `<Ctrl+T>` creates a new 4LIVE screen and switches to it.
* `<Ctrl+R>` switches to the previous 4LIVE screen.
* `<Ctrl+Y>` switches to the next 4LIVE screen.
* `<Ctrl+C>` clears the current 4LIVE screen.
* `<Ctrl+^>` imports the "real" text screen you were looking at before you entered the 4LIVE editor (like taking a text screenshot).
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.
4LIVE will automatically save the contents of your screen whenever you switch screens or exit the 4LIVE editor. It saves everything to the file `_4LIVE DATA`. You will see this file in the disk catalog.
## For developers

Binary file not shown.

File diff suppressed because it is too large Load Diff