1#ifndef KONAMIULTIMATECOLLECTION_HH
2#define KONAMIULTIMATECOLLECTION_HH
19 void powerUp(EmuTime::param time)
override;
20 void reset(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;
24 void writeMem(
word address,
byte value, EmuTime::param time)
override;
27 template<
typename Archive>
28 void serialize(Archive& ar,
unsigned version);
31 [[nodiscard]]
bool isSCCAccess(
word addr)
const;
32 [[nodiscard]]
unsigned getFlashAddr(
unsigned addr)
const;
34 [[nodiscard]]
bool isKonamiSCCmode()
const {
return (mapperReg & 0x20) == 0; }
35 [[nodiscard]]
bool isFlashRomWriteEnabled()
const {
return (mapperReg & 0x10) != 0; }
36 [[nodiscard]]
bool isBank0Disabled()
const {
return (mapperReg & 0x08) != 0; }
37 [[nodiscard]]
bool isMapperRegisterEnabled()
const {
return (mapperReg & 0x04) == 0; }
38 [[nodiscard]]
bool areBankRegsEnabled()
const {
return (mapperReg & 0x02) == 0; }
44 [[nodiscard]]
unsigned readExt(
unsigned address)
override;
54 std::array<byte, 4> bankRegs;
void powerUp(EmuTime::param time) override
This method is called when MSX is powered up.
void reset(EmuTime::param time) override
This method is called on reset.
byte readMem(word address, EmuTime::param time) override
Read a byte from a location at a certain time from this device.
void serialize(Archive &ar, unsigned version)
byte peekMem(word address, EmuTime::param time) const override
Read a byte from a given memory location.
const byte * getReadCacheLine(word address) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for reading.
byte * getWriteCacheLine(word address) override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
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.
This file implemented 3 utility functions:
uint16_t word
16 bit unsigned integer