15 void powerUp(EmuTime::param time)
override;
16 [[nodiscard]]
byte readMem(
word address, EmuTime::param time)
override;
17 void writeMem(
word address,
byte value, EmuTime::param time)
override;
20 [[nodiscard]]
byte peekMem(
word address, EmuTime::param time)
const override;
22 template<
typename Archive>
23 void serialize(Archive& ar,
unsigned version);
27 [[nodiscard]]
inline unsigned translate(
unsigned address)
const;
32 std::optional<CheckedRam> checkedRam;
An MSXDevice is an emulated hardware component connected to the bus of the emulated MSX.
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.
const byte * getReadCacheLine(word start) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for reading.
void powerUp(EmuTime::param time) override
This method is called when MSX is powered up.
byte peekMem(word address, EmuTime::param time) const override
Read a byte from a given memory location.
void serialize(Archive &ar, unsigned version)
byte readMem(word address, EmuTime::param time) override
Read a byte from a location at a certain time from this device.
byte * getWriteCacheLine(word start) override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
This file implemented 3 utility functions:
uint16_t word
16 bit unsigned integer