2016-09-17 22:01:00 +00:00
|
|
|
//
|
|
|
|
// 1770.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 17/09/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef _770_hpp
|
|
|
|
#define _770_hpp
|
|
|
|
|
2016-09-18 17:35:54 +00:00
|
|
|
#include "../../Storage/Disk/DiskDrive.hpp"
|
|
|
|
|
|
|
|
namespace WD {
|
|
|
|
|
2016-09-21 02:14:33 +00:00
|
|
|
class WD1770: public Storage::Disk::Drive {
|
2016-09-18 17:35:54 +00:00
|
|
|
public:
|
2016-09-20 19:56:31 +00:00
|
|
|
WD1770();
|
|
|
|
|
2016-09-21 02:14:33 +00:00
|
|
|
// void set_disk(std::shared_ptr<Storage::Disk::Disk> disk);
|
2016-09-18 17:35:54 +00:00
|
|
|
void set_is_double_density(bool is_double_density);
|
|
|
|
void set_register(int address, uint8_t value);
|
2016-09-20 02:06:56 +00:00
|
|
|
uint8_t get_register(int address);
|
|
|
|
|
|
|
|
void run_for_cycles(unsigned int number_of_cycles);
|
2016-09-20 19:56:31 +00:00
|
|
|
|
|
|
|
enum Flag: uint8_t {
|
|
|
|
MotorOn = 0x80,
|
|
|
|
WriteProtect = 0x40,
|
|
|
|
RecordType = 0x20,
|
|
|
|
SpinUp = 0x20,
|
|
|
|
RecordNotFound = 0x10,
|
|
|
|
CRCError = 0x08,
|
|
|
|
LostData = 0x04,
|
|
|
|
TrackZero = 0x04,
|
|
|
|
DataRequest = 0x02,
|
|
|
|
Index = 0x02,
|
|
|
|
Busy = 0x01
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned int cycles;
|
|
|
|
|
|
|
|
enum class State {
|
|
|
|
Waiting,
|
2016-09-20 20:58:23 +00:00
|
|
|
BeginType1, BeginType2, BeginType3,
|
|
|
|
BeginType1PostSpin,
|
|
|
|
WaitForSixIndexPulses,
|
|
|
|
TestTrack, TestDirection, TestHead,
|
2016-09-21 02:14:33 +00:00
|
|
|
TestVerify, VerifyTrack,
|
|
|
|
StepDelay
|
2016-09-20 19:56:31 +00:00
|
|
|
} state_;
|
|
|
|
|
2016-09-20 20:58:23 +00:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
int count;
|
|
|
|
State next_state;
|
|
|
|
} wait_six_index_pulses_;
|
2016-09-21 02:14:33 +00:00
|
|
|
struct {
|
|
|
|
int count;
|
|
|
|
} step_delay_;
|
2016-09-20 20:58:23 +00:00
|
|
|
};
|
|
|
|
|
2016-09-20 19:56:31 +00:00
|
|
|
uint8_t status_;
|
|
|
|
uint8_t track_;
|
|
|
|
uint8_t sector_;
|
|
|
|
uint8_t data_;
|
|
|
|
uint8_t command_;
|
|
|
|
bool has_command_;
|
2016-09-20 20:58:23 +00:00
|
|
|
|
|
|
|
void set_interrupt_request(bool interrupt_request) {}
|
|
|
|
bool is_step_in_;
|
|
|
|
uint8_t data_shift_register_;
|
2016-09-21 02:14:33 +00:00
|
|
|
|
|
|
|
virtual void process_input_bit(int value, unsigned int cycles_since_index_hole);
|
|
|
|
virtual void process_index_hole();
|
2016-09-18 17:35:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2016-09-17 22:01:00 +00:00
|
|
|
|
|
|
|
#endif /* _770_hpp */
|