mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-15 09:05:39 +00:00
2e04ce348a
And use it in ContinueExecution()
19 lines
465 B
C++
19 lines
465 B
C++
#pragma once
|
|
|
|
class Disk2CardManager
|
|
{
|
|
public:
|
|
Disk2CardManager(void) {}
|
|
~Disk2CardManager(void) {}
|
|
|
|
bool IsConditionForFullSpeed(void);
|
|
void Update(const ULONG nExecutedCycles);
|
|
void Reset(const bool powerCycle = false);
|
|
bool GetEnhanceDisk(void);
|
|
void SetEnhanceDisk(bool enhanceDisk);
|
|
void LoadLastDiskImage(void);
|
|
void Destroy(void);
|
|
bool IsAnyFirmware13Sector(void);
|
|
void GetFilenameAndPathForSaveState(std::string& filename, std::string& path);
|
|
};
|