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