mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 03:32:32 +00:00
53 lines
951 B
C++
53 lines
951 B
C++
//
|
|
// DiskII.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 20/04/2018.
|
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef DiskII_hpp
|
|
#define DiskII_hpp
|
|
|
|
#include "../../ClockReceiver/ClockReceiver.hpp"
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace Apple {
|
|
|
|
/*!
|
|
Provides an emulation of the Apple Disk II.
|
|
*/
|
|
class DiskII {
|
|
public:
|
|
enum class Control {
|
|
P0, P1, P2, P3,
|
|
Motor,
|
|
};
|
|
enum class Mode {
|
|
Read, Write
|
|
};
|
|
void set_control(Control control, bool on);
|
|
void set_mode(Mode mode);
|
|
void select_drive(int drive);
|
|
void set_data_register(uint8_t value);
|
|
uint8_t get_shift_register();
|
|
|
|
void run_for(const Cycles cycles);
|
|
void set_state_machine(const std::vector<uint8_t> &);
|
|
|
|
private:
|
|
uint8_t state_ = 0;
|
|
uint8_t inputs_ = 0;
|
|
uint8_t shift_register_ = 0;
|
|
uint8_t data_register_ = 0;
|
|
|
|
bool is_write_protected();
|
|
std::vector<uint8_t> state_machine_;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* DiskII_hpp */
|