Coder Social home page Coder Social logo

franklin's Introduction

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 three significant compatibility bugs in the 6.0 Franklin ROMs:

  • 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. Root cause identified, fix found in the 500 ROM and (optionally) applied to the 2X00 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 and (optionally) applied.
  • With 80-column/enhanced firmware active, sending bytes $40-$5F through C3COut1 will appear as MouseText, whereas on real Apples they are mapped to inverse uppercase. This affects both the 2X00 and 500. Root cause identified, fix identified and (optionally) applied.

franklin's People

Contributors

inexorabletash avatar

Watchers

 avatar  avatar  avatar

franklin's Issues

Ace 500 notes

Hi! I'm currently bringing up the ACE 500 in MAME and ran into this project. I have the machine booting up to loading the boot sector off of a floppy but it doesn't get further because I don't understand all of the crazy banking yet.

Here's what I know: there are 4 non-standard banking switches in the ACE 500. It appears to ignore the standard IIe and IIc ones since the 500 appears to predate the 32K ROM IIc and $C028 being documented.

$C0B8 - appears to bank (part of?) $C100-$C7FF to an alternate bank (don't know where this comes from yet, and this is causing DOS 3.3 to crash because some Franklin monitor routines rely on this space)
$C0B9 - $C100-$C7FF main bank (at offset $4100 in the 32K ROM)
$C0BA - Unlocks $C800 banking so that the next STA $CFFF will select a new bank (more below)
$C0BB - Locks $C800 to the "main" segment, located at offset $3000 in the ROM

$C800: there are 3 slot-specific banks plus the main segment. After hitting $C0BA and $CFFF, the following slots can be mapped in:
Slot 1 - located at $800 in the ROM (the STA $CFFF must be at $C1xx)
Slot 3 - located at $4800 in the ROM (the STA $CFFF must be at $C3xx)
Slot 5 - located at $1800 in the ROM (the STA $CFFF must be at $C5xx)

Conveniently, each slot's segment starts with $Cx $55 $AA, which once I realized what was happening made it possible to find the mappings by searching for $55 $AA. The "main" segment is considered to be slot 8, so it starts with $C8 $55 $AA.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.