mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
(MESS) More sector order heuristics. (nw)
This commit is contained in:
parent
8ad3900cb4
commit
4ef1aa7884
@ -622,6 +622,10 @@ bool a2_16sect_format::load(io_generic *io, UINT32 form_factor, floppy_image *im
|
||||
{
|
||||
// check ProDOS boot block
|
||||
if (!memcmp("PRODOS", §or_data[0x103], 6))
|
||||
{
|
||||
m_prodos_order = true;
|
||||
} // check for alternate version ProDOS boot block
|
||||
if (!memcmp("PRODOS", §or_data[0x121], 6))
|
||||
{
|
||||
m_prodos_order = true;
|
||||
} // check for ProDOS order SOS disk
|
||||
@ -635,7 +639,6 @@ bool a2_16sect_format::load(io_generic *io, UINT32 form_factor, floppy_image *im
|
||||
} // check for PCPI Applicard software in ProDOS order
|
||||
else if (!memcmp("COPYRIGHT (C) 1979, DIGITAL RESEARCH", §or_data[0x118], 36))
|
||||
{
|
||||
printf("PCPI detected\n");
|
||||
m_prodos_order = true;
|
||||
} // check Apple II Pascal
|
||||
else if (!memcmp("SYSTEM.APPLE", §or_data[0xd7], 12))
|
||||
|
Loading…
Reference in New Issue
Block a user