mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-10 08:04:45 +00:00
aac3d27c10
Also slightly cleans up DiskController a little further.
36 lines
623 B
C++
36 lines
623 B
C++
//
|
|
// Jasmin.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 05/01/2020.
|
|
// Copyright © 2020 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Jasmin_hpp
|
|
#define Jasmin_hpp
|
|
|
|
#include "../../Components/1770/1770.hpp"
|
|
#include "../../Activity/Observer.hpp"
|
|
#include "DiskController.hpp"
|
|
|
|
namespace Oric {
|
|
|
|
class Jasmin: public DiskController {
|
|
public:
|
|
Jasmin();
|
|
|
|
void write(int address, uint8_t value);
|
|
|
|
void set_activity_observer(Activity::Observer *observer);
|
|
|
|
private:
|
|
void set_motor_on(bool on) final;
|
|
bool motor_on_ = false;
|
|
|
|
Activity::Observer *observer_ = nullptr;
|
|
};
|
|
|
|
};
|
|
|
|
#endif /* Jasmin_hpp */
|