dingusppc/devices/floppy/superdrive.h

71 lines
1.8 KiB
C
Raw Normal View History

2021-12-12 20:40:04 +00:00
/*
DingusPPC - The Experimental PowerPC Macintosh emulator
Copyright (C) 2018-22 divingkatae and maximum
2021-12-12 20:40:04 +00:00
(theweirdo) spatium
(Contact divingkatae#1017 or powermax#2286 on Discord for more info)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/** @file Macintosh Superdrive definitions. */
#ifndef MAC_SUPERDRIVE_H
#define MAC_SUPERDRIVE_H
#include <devices/common/hwcomponent.h>
2021-12-12 20:40:04 +00:00
#include <cinttypes>
#include <string>
2021-12-12 20:40:04 +00:00
namespace MacSuperdrive {
/** Apple Drive status request addresses. */
enum StatusAddr : uint8_t {
MFM_Support = 5,
Double_Sided = 6,
Drive_Exists = 7,
Disk_In_Drive = 8,
Media_Kind = 0xF
2021-12-12 20:40:04 +00:00
};
/** Apple Drive command addresses. */
enum CommandAddr : uint8_t {
Motor_On_Off = 2,
};
/** Type of media currently in the drive. */
enum MediaKind : uint8_t {
high_density = 0, // 1 or 2 MB disk
low_density = 1
};
class MacSuperDrive : public HWComponent {
2021-12-12 20:40:04 +00:00
public:
MacSuperDrive();
~MacSuperDrive() = default;
void command(uint8_t addr, uint8_t value);
uint8_t status(uint8_t addr);
int insert_disk(std::string& img_path);
2021-12-12 20:40:04 +00:00
private:
uint8_t media_kind;
uint8_t has_disk;
2021-12-12 20:40:04 +00:00
};
}; // namespace MacSuperdrive
#endif // MAC_SUPERDRIVE_H