openMSX
ColecoSuperGameModule.hh
Go to the documentation of this file.
1#ifndef COLECOSUPERGAMEMODULE_HH
2#define COLECOSUPERGAMEMODULE_HH
3
4#include "MSXDevice.hh"
5#include "AY8910.hh"
6#include "Rom.hh"
7#include "CheckedRam.hh"
8
9namespace openmsx {
10
11class ColecoSuperGameModule final : public MSXDevice
12{
13public:
14 explicit ColecoSuperGameModule(const DeviceConfig& config);
15 ~ColecoSuperGameModule() override;
16
17 void reset(EmuTime::param time) override;
18 [[nodiscard]] byte readIO(word port, EmuTime::param time) override;
19 [[nodiscard]] byte peekIO(word port, EmuTime::param time) const override;
20 void writeIO(word port, byte value, EmuTime::param time) override;
21 [[nodiscard]] byte peekMem(word address, EmuTime::param time) const override;
22 [[nodiscard]] byte readMem(word address, EmuTime::param time) override;
23 void writeMem(word address, byte value, EmuTime::param time) override;
24 [[nodiscard]] const byte* getReadCacheLine(word start) const override;
25 [[nodiscard]] byte* getWriteCacheLine(word start) const override;
26
27 template<typename Archive>
28 void serialize(Archive& ar, unsigned version);
29
30private:
31 AY8910 psg;
32 CheckedRam sgmRam;
33 CheckedRam mainRam;
34 Rom biosRom;
35 byte psgLatch;
36 bool ramEnabled;
37 bool ramAtBiosEnabled;
38};
39
40} // namespace openmsx
41
42#endif
This class implements the AY-3-8910 sound chip.
Definition AY8910.hh:22
This class keeps track of which bytes in the Ram have been written to.
Definition CheckedRam.hh:28
const byte * getReadCacheLine(word start) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for reading.
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.
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.
byte peekMem(word address, EmuTime::param time) const override
Read a byte from a given memory location.
byte * getWriteCacheLine(word start) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
byte readMem(word address, EmuTime::param time) override
Read a byte from a location at a certain time from this device.
void reset(EmuTime::param time) override
This method is called on reset.
byte peekIO(word port, EmuTime::param time) const override
Read a byte from a given IO port.
void writeMem(word address, byte value, EmuTime::param time) override
Write a given byte to a given location at a certain time to this device.
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:11
uint16_t word
16 bit unsigned integer
Definition openmsx.hh:29