openMSX
DummyY8950KeyboardDevice.hh
Go to the documentation of this file.
1#ifndef DUMMYY8950KEYBOARDDEVICE_HH
2#define DUMMYY8950KEYBOARDDEVICE_HH
3
5
6namespace openmsx {
7
9{
10public:
11 void write(byte data, EmuTime::param time) override;
12 [[nodiscard]] byte read(EmuTime::param time) override;
13
14 [[nodiscard]] std::string_view getDescription() const override;
15 void plugHelper(Connector& connector, EmuTime::param time) override;
16 void unplugHelper(EmuTime::param time) override;
17};
18
19} // namespace openmsx
20
21#endif
Represents something you can plug devices into.
Definition Connector.hh:21
std::string_view getDescription() const override
Description for this pluggable.
byte read(EmuTime::param time) override
Read data from the device.
void unplugHelper(EmuTime::param time) override
void plugHelper(Connector &connector, EmuTime::param time) override
void write(byte data, EmuTime::param time) override
Send data to the device.
This file implemented 3 utility functions:
Definition Autofire.cc:11