openMSX
RomKonami.hh
Go to the documentation of this file.
1#ifndef ROMKONAMI_HH
2#define ROMKONAMI_HH
3
4#include "RomBlocks.hh"
5
6namespace openmsx {
7
8class RomKonami : public Rom8kBBlocks
9{
10public:
11 RomKonami(const DeviceConfig& config, Rom&& rom);
12
13 void reset(EmuTime::param time) override;
14 void writeMem(word address, byte value, EmuTime::param time) override;
15 [[nodiscard]] byte* getWriteCacheLine(word address) const override;
16
17 template<typename Archive>
18 void serialize(Archive& ar, unsigned version);
19
20private:
21 void bankSwitch(unsigned page, unsigned block);
22};
23
25
26} // namespace openmsx
27
28#endif
void reset(EmuTime::param time) override
This method is called on reset.
Definition RomKonami.cc:54
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 RomKonami.cc:61
void serialize(Archive &ar, unsigned version)
Definition RomKonami.cc:75
byte * getWriteCacheLine(word address) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
Definition RomKonami.cc:69
This file implemented 3 utility functions:
Definition Autofire.cc:9
uint16_t word
16 bit unsigned integer
Definition openmsx.hh:29
#define REGISTER_BASE_CLASS(CLASS, NAME)