mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-19 04:08:45 +00:00
21d16d3a0c
. The auto-switch is done on each reset, or on inserting a disk at the start-up screen (MODE_LOGO). . The Window's title include '(S6-13)' if DiskII card has 13-sector f/w. . The debugger's 'disk info' cmd will show FW13 or FW16 depending on f/w.
18 lines
379 B
C++
18 lines
379 B
C++
#pragma once
|
|
|
|
class Disk2CardManager
|
|
{
|
|
public:
|
|
Disk2CardManager(void) {}
|
|
~Disk2CardManager(void) {}
|
|
|
|
bool IsConditionForFullSpeed(void);
|
|
void UpdateDriveState(UINT cycles);
|
|
void Reset(const bool powerCycle = false);
|
|
bool GetEnhanceDisk(void);
|
|
void SetEnhanceDisk(bool enhanceDisk);
|
|
void LoadLastDiskImage(void);
|
|
void Destroy(void);
|
|
bool IsAnyFirmware13Sector(void);
|
|
};
|