openMSX
RomDooly.hh
Go to the documentation of this file.
1#ifndef ROMDOOLY_HH
2#define ROMDOOLY_HH
3
4#include "MSXRom.hh"
6
7namespace openmsx {
8
9class RomDooly final : public MSXRom
10{
11public:
12 RomDooly(const DeviceConfig& config, Rom&& rom);
13
14 void reset(EmuTime::param time) override;
15 [[nodiscard]] byte peekMem(word address, EmuTime::param time) const override;
16 [[nodiscard]] byte readMem(word address, EmuTime::param time) override;
17 void writeMem(word address, byte value, EmuTime::param time) override;
18 [[nodiscard]] byte* getWriteCacheLine(word address) const override;
19
20 template<typename Archive>
21 void serialize(Archive& ar, unsigned version);
22
23private:
24 RomBlockDebuggable romBlockDebug;
25 byte conversion = 0;
26};
27
28} // namespace openmsx
29
30#endif
byte readMem(word address, EmuTime::param time) override
Read a byte from a location at a certain time from this device.
Definition RomDooly.cc:62
void reset(EmuTime::param time) override
This method is called on reset.
Definition RomDooly.cc:21
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.
Definition RomDooly.cc:67
byte peekMem(word address, EmuTime::param time) const override
Read a byte from a given memory location.
Definition RomDooly.cc:26
void serialize(Archive &ar, unsigned version)
Definition RomDooly.cc:92
byte * getWriteCacheLine(word address) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
Definition RomDooly.cc:82
This file implemented 3 utility functions:
Definition Autofire.cc:11
uint16_t word
16 bit unsigned integer
Definition openmsx.hh:29