openMSX
DummyY8950KeyboardDevice.cc
Go to the documentation of this file.
2
3namespace openmsx {
4
5void DummyY8950KeyboardDevice::write(byte /*data*/, EmuTime::param /*time*/)
6{
7 // ignore data
8}
9
10byte DummyY8950KeyboardDevice::read(EmuTime::param /*time*/)
11{
12 return 255;
13}
14
16{
17 return {};
18}
19
21 EmuTime::param /*time*/)
22{
23}
24
25void DummyY8950KeyboardDevice::unplugHelper(EmuTime::param /*time*/)
26{
27}
28
29} // namespace openmsx
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:9