bbb | ||
cricket | ||
inc | ||
ram.drv | ||
.travis.yml | ||
Makefile | ||
README.md |
ProDOS Drivers
The ProDOS operating system for the Apple II executes the first .SYSTEM
file found in the boot directory on startup. A common pattern is to have the boot directory contain several "driver" files that customize ProDOS by installing drivers for hardware or modify specific parts of the operating system. These include:
- Real-time Clock drivers (e.g. No-Slot Clock, Cricket!, AE DClock, etc)
- RAM Disk drivers (e.g. RamWorks)
- Quit dispatcher/selector (
BYE
routines)
Early versions of these drivers would often invoke a specific file on completion, sometimes user-configurable. The best versions of these drivers simply execute the following .SYSTEM
file, although this is non-trivial code and often did not work with network drives.
This repository collects several drivers and uses common code to chain to the next .SYSTEM
file, suporting network drives. An example disk catalog might therefore include:
PRODOS
- the operating systemNS.CLOCK.SYSTEM
- install No-Slot Clock driver, if presentCRICKET.SYSTEM
- install Cricket! driver, if presentRAM.DRV.SYSTEM
- install RamWorks RAM disk driver, if presentBUHBYE.SYSTEM
- install a customized Quit handlerQUIT.SYSTEM
- invoke the Quit handler immediately, as a program selector