openMSX
MSXCielTurbo.hh
Go to the documentation of this file.
1#ifndef MSXCIELTURBO_HH
2#define MSXCIELTURBO_HH
3
4#include "MSXDevice.hh"
5
6namespace openmsx {
7
8class MSXCielTurbo final : public MSXDevice
9{
10public:
11 explicit MSXCielTurbo(const DeviceConfig& config);
12
13 // MSXDevice
14 void reset(EmuTime::param time) override;
15 [[nodiscard]] byte readIO(word port, EmuTime::param time) override;
16 [[nodiscard]] byte peekIO(word port, EmuTime::param time) const override;
17 void writeIO(word port, byte value, EmuTime::param time) override;
18
19 template<typename Archive>
20 void serialize(Archive& ar, unsigned version);
21
22private:
23 byte lastValue;
24};
25
26} // namespace openmsx
27
28#endif
void writeIO(word port, byte value, EmuTime::param time) override
Write a byte to a given IO port at a certain time to this device.
void serialize(Archive &ar, unsigned version)
void reset(EmuTime::param time) override
This method is called on reset.
byte readIO(word port, EmuTime::param time) override
Read a byte from an IO port at a certain time from this device.
byte peekIO(word port, EmuTime::param time) const override
Read a byte from a given IO port.
An MSXDevice is an emulated hardware component connected to the bus of the emulated MSX.
Definition MSXDevice.hh:36
This file implemented 3 utility functions:
Definition Autofire.cc:9
uint16_t word
16 bit unsigned integer
Definition openmsx.hh:29