prodos-drivers/README.md

26 lines
1004 B
Markdown
Raw Normal View History

2017-11-26 18:57:28 +00:00
# The Cricket - ProDOS Clock Driver
2017-11-26 18:55:44 +00:00
I acquired a Cricket sound/clock peripheral on eBay. Therefore it is now critical that we have a conforming ProDOS clock driver for it.
2017-12-03 19:46:30 +00:00
> STATUS: Works on my machine!
2017-11-26 18:57:28 +00:00
2017-11-26 18:55:44 +00:00
## Background
"The Cricket" by Street Electronics Corporation, released in 1984, is a hardware peripheral for the Apple //c computer. It plugs into the serial port and offers a multi-voice sound synthesizer, a speech synthesizer, and a real-time clock.
The included disks include:
* `/CRICKET/PRODOS.MOD` which can be BRUN to patch ProDOS in memory with a clock driver.
* A modified version of ProDOS
* A utility to patch ProDOS on disk
2017-12-03 19:46:30 +00:00
## Goals
2017-11-26 18:55:44 +00:00
2017-11-27 03:51:35 +00:00
Like the `NS.CLOCK.SYSTEM` (by "CAP") ideally we would have:
2017-11-26 18:55:44 +00:00
2017-11-27 07:04:02 +00:00
* [x] A ProDOS `.SYSTEM` file
2017-12-02 04:04:20 +00:00
* [X] Detects the presence of a Cricket
2017-11-27 07:04:02 +00:00
* [x] Installs a driver in memory following the ProDOS clock driver protocol
* [x] Chains to the next `.SYSTEM` file (e.g. `BASIC.SYSTEM`)
2017-12-02 04:04:20 +00:00
2017-12-03 19:46:30 +00:00
Successfully tested on real hardware. (Laser 128EX, including at 3x speed.)