openMSX
MSXMemoryMapper.hh
Go to the documentation of this file.
1#ifndef MSXMEMORYMAPPER_HH
2#define MSXMEMORYMAPPER_HH
3
5
6namespace openmsx {
7
9{
10public:
11 explicit MSXMemoryMapper(const DeviceConfig& config);
12
13 void writeIO(word port, byte value, EmuTime::param time) override;
14
15 template<typename Archive>
16 void serialize(Archive& ar, unsigned version);
17};
19
20} // namespace openmsx
21
22#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)
This file implemented 3 utility functions:
Definition Autofire.cc:11
uint16_t word
16 bit unsigned integer
Definition openmsx.hh:29
#define SERIALIZE_CLASS_VERSION(CLASS, VERSION)