-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Xerox 820 disk format #3375
Comments
http://www.vcfed.org/forum/archive/index.php/t-45699.html |
* QuickLoad option for the Decisionmate Loads .COM programs in memory if CPM-80 is loaded. Similar to the QuickLoad option for the Kaypro. * QuikLoad on Aussie Byte * QuikLoad on Aussie Byte * Safer QuikLoad on the DMV * Safer QuikLoad on Kaypro * Quikload on the QX-10 * Reverting to resolve conflicts with mamedev * Safer QuikLoad on the DecisionMate V * QuikLoad for the Aussie Byte * QuikLoad for the Epson QX-10 * QuikLoad for the Altos 5 * QuikLoad option for the Xerox 820 * Safer QuikLoad for the KayPro models * QuikLoad for the NCR DecisionMate * QuikLoad option for the Aussie Byte * QuikLoad for the QX-10 * QuikLoad for the Altos 5 * QuikLoad for the Xerox 820 * QuikLoad for the Aussie Byte * QuikLoad for the QX-10 * QuikLoad for the Altos 5 * QuikLoad for the Xerox820 + #3375
Go ahead and add an "sa400_40" or similar with 40 tracks for applications that need it. |
I think I found extra docs about the earlier Xerox 820 (page 10-36): DISK FORMAT
So the HW differences on the Shugart floppy drives are identified by the model number, SA400 (35 tracks), SA400L (40 tracks). |
On 3/23/18 2:09 AM, Stefano wrote:
I think I found extra docs about the earlier Xerox 820 (page 10-36):
http://www.bitsavers.org/pdf/xerox/820/9R80240_820_Information_Processor_CPM_2.2_Manual_Aug81.pdf
there were several versions of the 820 with either 8" or 5" drives
if you're getting into CP/M floppy formats, there are a couple of very long format lists out there.
|
yes, I already ran into a bug with the 8 inches formats, I'm trying to figure out what's going on. . atm I noticed that the td0 format support is surprisingly simplified, I'm impressed that it can do already so much. If my improvements will help booting something more, then I'll dare to propose another pull |
btw this issue as I opened it is solved |
I recently tested the X820 implementation and I noticed that in the base configuration the Shugart SA-400 disk is configured to support 35 tracks only:
static SLOT_INTERFACE_START( xerox820_floppies )
SLOT_INTERFACE( "sa400", FLOPPY_525_SSSD_35T ) // Shugart SA-400
(...)
The odd thing is that all the SSSD disk images I could find online are for 40 tracks drives, and make MAME crash.
Then I found "Servicing your Personal Computer" book:
"The first mini-floppy disk drive to gain popularity was the SA400 from Shugart Associates. This 35 (or 40) track drive provides an unformatted capacity of 125K bytes in single density (...)
I tried to rebuild MAME by changing the "sa400" configuration to FLOPPY_525_SSSD, and the disk images I could find work perfectly.. should it be an extra interface variant, an odd coincidence on all the disk images dumps, or simply a bug requiring to be fixed ? Feeding the wrong disk format at the moment crashes MAME horribly..
The text was updated successfully, but these errors were encountered: