The invisible editor for your Apple II
Go to file
4am e8002eb5f8 doc updates for v2 2016-11-16 17:12:48 -05:00
bin add GlobalKeyboardHandler installer and welcome message 2016-10-16 14:32:54 -04:00
notes add title screen, auto-disappears on first keypress 2016-10-31 11:11:32 -04:00
res initial import 2016-10-16 11:11:04 -04:00
src update docs and visible strings for v2 release 2016-11-16 14:37:26 -05:00
.gitignore initial import 2016-10-16 11:11:04 -04:00
LICENSE update LICENSE file 2016-11-03 12:05:51 -04:00
Makefile fix automated build of disk image to patch in stubbed file length of 4live binary 2016-11-15 21:39:19 -05:00
README.md doc updates for v2 2016-11-16 17:12:48 -05:00

README.md

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.

System requirements

  • Apple II+ or later
  • 64K memory
  • DOS 3.3 or compatible third-party DOS (tested with Pronto-DOS, Diversi-DOS, and Diversi-DOS 64K)

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.

For users

Install 4LIVE by typing BRUN _4LIVE from the BASIC prompt, or by executing it as the last line of your HELLO program.

10 PRINT CHR$(4);"BRUN _4LIVE"

Now you can press <Ctrl+@> at any time to enter the 4LIVE editor. This works from the BASIC prompt or the monitor -- even in the middle of typing a command -- as long as DOS is in memory and connected. (If you can do a CATALOG, DOS is connected.)

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

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

4LIVE is written in 100% 6502 assembly language, but it is developed on modern PCs (not in a "classic" IDE like Merlin-8). The source code is stored and managed in text files. These text files are assembled to executable code with ACME, then transferred to a disk image (.dsk file) with AppleCommander. You can mount this disk image in any Apple II emulator.

If you are on Mac OS X and have the Virtual II emulator, you can use the included Applescript to mount the .dsk file and reboot the emulator automatically. The included Makefile does this by default (after running ACME and AppleCommander).

Thus, during development, my testing cycle goes like this:

  1. Edit .a source code file in any modern text editor
  2. Run make
  3. Test in Virtual II
  4. GOTO 1

Acknowledgments

Thanks to Peter Ferrie, a.k.a. qkumba for his many contributions to this project.

Thanks to Quinn Dunki for her help integrating the Apple II build pipeline into my development environment.