1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-10 12:29:01 +00:00
CLK/Machines/Apple/ADB/Bus.hpp

76 lines
1.5 KiB
C++
Raw Normal View History

2021-02-11 02:24:31 +00:00
//
// Bus.hpp
// Clock Signal
//
// Created by Thomas Harte on 10/02/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#ifndef Bus_hpp
#define Bus_hpp
#include "../../../ClockReceiver/ClockReceiver.hpp"
#include <bitset>
#include <cstddef>
#include <vector>
namespace Apple {
namespace ADB {
/*!
The ADB bus models the data line of the ADB bus; it allows multiple devices to
post their current data level, or read the current level, and also offers a tokenised
version of all activity on the bus.
*/
class Bus {
public:
Bus(HalfCycles clock_speed);
void run_for(HalfCycles);
size_t add_device();
void set_device_output(size_t device, bool output);
bool get_state() const;
enum class Event {
Reset,
Attention,
Byte,
ServiceRequest,
Unrecognised
};
struct Observer {
/// Reports to an observer that @c event was observed in the activity
/// observed on this bus.
virtual void adb_bus_did_observe_event(Bus *, Event event, uint8_t value = 0xff);
};
/*!
Adds an observer.
*/
void add_observer(Observer *);
private:
HalfCycles time_in_state_;
double half_cycles_to_microseconds_ = 1.0;
std::vector<Observer *> observers_;
unsigned int shift_register_ = 0;
bool data_level_ = true;
// ADB addressing supports at most 16 devices but that doesn't include
// the controller. So assume a maximum of 17 connected devices.
std::bitset<17> bus_state_{0xffffffff};
size_t next_device_id_ = 0;
inline void shift(unsigned int);
};
}
}
#endif /* Bus_hpp */