20 void powerUp(EmuTime::param time)
override;
21 void reset(EmuTime::param time)
override;
22 [[nodiscard]]
byte readMem(
word address, EmuTime::param time)
override;
25 EmuTime::param time)
override;
28 [[nodiscard]]
byte readIO(
word port, EmuTime::param time)
override;
29 [[nodiscard]]
byte peekIO(
word port, EmuTime::param time)
const override;
30 void writeIO(
word port,
byte value, EmuTime::param time)
override;
32 template<
typename Archive>
33 void serialize(Archive& ar,
unsigned version);
36 void setBank(
byte page,
byte block);
39 const unsigned numBlocks;
41 const std::unique_ptr<Rom> rom;
43 const byte maskBlocks;
44 std::array<byte, 4> bank;
An MSXDevice is an emulated hardware component connected to the bus of the emulated MSX.
void reset(EmuTime::param time) override
This method is called on reset.
byte * getWriteCacheLine(word address) override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
void powerUp(EmuTime::param time) override
This method is called when MSX is powered up.
byte readMem(word address, EmuTime::param time) override
Read a byte from a location at a certain time from this device.
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 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)
byte peekIO(word port, EmuTime::param time) const override
Read a byte from a given IO port.
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.
const byte * getReadCacheLine(word address) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for reading.
This file implemented 3 utility functions:
uint16_t word
16 bit unsigned integer