mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
55 lines
1.2 KiB
C++
55 lines
1.2 KiB
C++
//
|
|
// Commodore1540.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 05/07/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Commodore1540_hpp
|
|
#define Commodore1540_hpp
|
|
|
|
#include "../SerialBus.hpp"
|
|
#include "../../ROMMachine.hpp"
|
|
#include "../../../Storage/Disk/Disk.hpp"
|
|
#include "Implementation/C1540Base.hpp"
|
|
|
|
namespace Commodore {
|
|
namespace C1540 {
|
|
|
|
/*!
|
|
Provides an emulation of the C1540.
|
|
*/
|
|
class Machine: public MachineBase, public ROMMachine::Machine {
|
|
public:
|
|
enum Personality {
|
|
C1540,
|
|
C1541
|
|
};
|
|
Machine(Personality p);
|
|
|
|
/*!
|
|
Sets the source for this drive's ROM image.
|
|
*/
|
|
bool set_rom_fetcher(const std::function<std::vector<std::unique_ptr<std::vector<uint8_t>>>(const std::string &machine, const std::vector<std::string> &names)> &roms_with_names);
|
|
|
|
/*!
|
|
Sets the serial bus to which this drive should attach itself.
|
|
*/
|
|
void set_serial_bus(std::shared_ptr<::Commodore::Serial::Bus> serial_bus);
|
|
|
|
/// Advances time.
|
|
void run_for(const Cycles cycles);
|
|
|
|
/// Inserts @c disk into the drive.
|
|
void set_disk(std::shared_ptr<Storage::Disk::Disk> disk);
|
|
|
|
private:
|
|
Personality personality_;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* Commodore1540_hpp */
|