mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
aac3d27c10
Also slightly cleans up DiskController a little further.
44 lines
808 B
C++
44 lines
808 B
C++
//
|
|
// BD500.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 14/01/2020.
|
|
// Copyright © 2020 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef BD500_hpp
|
|
#define BD500_hpp
|
|
|
|
#include "../../Components/1770/1770.hpp"
|
|
#include "../../Activity/Observer.hpp"
|
|
#include "DiskController.hpp"
|
|
|
|
#include <array>
|
|
#include <memory>
|
|
|
|
namespace Oric {
|
|
|
|
class BD500: public DiskController {
|
|
public:
|
|
BD500();
|
|
|
|
void write(int address, uint8_t value);
|
|
uint8_t read(int address);
|
|
|
|
void run_for(const Cycles cycles);
|
|
|
|
void set_activity_observer(Activity::Observer *observer);
|
|
|
|
private:
|
|
void set_head_load_request(bool head_load) final;
|
|
bool is_loading_head_ = false;
|
|
Activity::Observer *observer_ = nullptr;
|
|
|
|
void access(int address);
|
|
void set_head_loaded(bool loaded);
|
|
};
|
|
|
|
};
|
|
|
|
#endif /* BD500_hpp */
|