openMSX
SVIFDC.hh
Go to the documentation of this file.
1#ifndef SVIFDC_HH
2#define SVIFDC_HH
3
4#include "WD2793BasedFDC.hh"
5
6namespace openmsx {
7
8class SVIFDC final : public WD2793BasedFDC
9{
10public:
11 SVIFDC(const DeviceConfig& config);
12
13 [[nodiscard]] byte readIO(word port, EmuTime::param time) override;
14 [[nodiscard]] byte peekIO(word port, EmuTime::param time) const override;
15 void writeIO(word port, byte value, EmuTime::param time) override;
16
17 template<typename Archive>
18 void serialize(Archive& ar, unsigned version);
19};
20
21} // namespace openmsx
22
23#endif
byte peekIO(word port, EmuTime::param time) const override
Read a byte from a given IO port.
Definition SVIFDC.cc:52
byte readIO(word port, EmuTime::param time) override
Read a byte from an IO port at a certain time from this device.
Definition SVIFDC.cc:34
void serialize(Archive &ar, unsigned version)
Definition SVIFDC.cc:118
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.
Definition SVIFDC.cc:70
This file implemented 3 utility functions:
Definition Autofire.cc:9
uint16_t word
16 bit unsigned integer
Definition openmsx.hh:29