Add README

This commit is contained in:
Joshua Bell 2021-11-07 08:56:39 -08:00
parent 7ab63c6e28
commit 89552349d4
1 changed files with 28 additions and 0 deletions

28
README.md Normal file
View File

@ -0,0 +1,28 @@
# Franklin Stuff
The Franklin ACE 1000 line was a clone of the Apple II+. Famously, the ROMs were direct copies of Apple's ROMs, and this went to the courts. After losing, and because technology advanced, Franklin released more advanced machines:
* Franklin ACE 2X00 (where X is the number of built-in disk drives) - an Apple IIe clone
* Franklin ACE 500 - an Apple IIc clone
Both of these had custom ROMs, both to avoid infringing on Apple's IP and to handle built-in feature such as parallel ports and disk controllers.
This repo is about investigating these ROMs to understand how they work, how the machines differ from the Apple machines they are based on, how the ROMs evolved over time, and bugs present in the ROMs.
## Versions
At least two versions of the 2X00 ROMs are known to exist:
* v5.X - identifies like an original IIe with $FBC0=$EA; has significant compatibility issues
* v6.0 - identifies like an Enhanced IIe with $FBC0=$E0
Only one version of the 500 ROM is known to exist:
* v1.0 - identifies like a IIc with $FBC0=$00
## Bugs
There are at least two significant compatibility bugs in the 6.0 Franklin ROMs:
* With 80-column/enhanced firmware active, once MouseText is activated (via outputting $1B), attempting to turn it off by outputting $18 fails. This affects both the 2X00 and 500. Root cause identified & fix identified.
* With 80-column/enhanced firmware active, horizontal cursor position must use `OURCH` ($57B) not `CH` ($24). This affects only the 2X00. This is documented by Apple, but real Apples, the Laser 128, and Franklin ACE 500 all support using just `CH` via clever firmware routines.