20 void reset(EmuTime::param time)
override;
21 void writeIO(
word port,
byte value, EmuTime::param time)
override;
22 [[nodiscard]]
byte readIO(
word port, EmuTime::param time)
override;
23 [[nodiscard]]
byte peekIO(
word port, EmuTime::param time)
const override;
24 [[nodiscard]]
byte readMem(
word address, EmuTime::param time)
override;
25 [[nodiscard]]
byte peekMem(
word address, EmuTime::param time)
const override;
27 void writeMem(
word address,
byte value, EmuTime::param time)
override;
30 template<
typename Archive>
31 void serialize(Archive& ar,
unsigned version);
byte peekMem(word address, EmuTime::param time) const override
Read a byte from a given memory location.
byte readMem(word address, EmuTime::param time) override
Read a byte from a location at a certain time from this device.
const byte * getReadCacheLine(word address) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for reading.
byte readIO(word port, EmuTime::param time) override
Read a byte from an IO port at a certain time from this device.
void serialize(Archive &ar, unsigned version)
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.
void reset(EmuTime::param time) override
This method is called on reset.
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.
byte peekIO(word port, EmuTime::param time) const override
Read a byte from a given IO port.
byte * getWriteCacheLine(word address) override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
An MSXDevice is an emulated hardware component connected to the bus of the emulated MSX.
Generic Gang-of-Four Observer class, templatized edition.
This file implemented 3 utility functions:
uint16_t word
16 bit unsigned integer