openMSX
|
#include <MSXCPUInterface.hh>
Public Types | |
using | BreakPoints = std::vector< BreakPoint > |
using | WatchPoints = std::vector< std::shared_ptr< WatchPoint > > |
using | Conditions = std::vector< DebugCondition > |
Public Member Functions | |
MSXCPUInterface (const MSXCPUInterface &)=delete | |
MSXCPUInterface & | operator= (const MSXCPUInterface &)=delete |
MSXCPUInterface (MSXMotherBoard &motherBoard) | |
~MSXCPUInterface () | |
void | register_IO_In (byte port, MSXDevice *device) |
Devices can register their In ports. More... | |
void | unregister_IO_In (byte port, MSXDevice *device) |
void | register_IO_Out (byte port, MSXDevice *device) |
Devices can register their Out ports. More... | |
void | unregister_IO_Out (byte port, MSXDevice *device) |
bool | replace_IO_In (byte port, MSXDevice *oldDevice, MSXDevice *newDevice) |
These methods replace a previously registered device with a new one. More... | |
bool | replace_IO_Out (byte port, MSXDevice *oldDevice, MSXDevice *newDevice) |
void | registerMemDevice (MSXDevice &device, int ps, int ss, unsigned base, unsigned size) |
Devices can register themself in the MSX slot structure. More... | |
void | unregisterMemDevice (MSXDevice &device, int ps, int ss, unsigned base, unsigned size) |
void | registerGlobalWrite (MSXDevice &device, word address) |
(Un)register global writes. More... | |
void | unregisterGlobalWrite (MSXDevice &device, word address) |
void | registerGlobalRead (MSXDevice &device, word address) |
(Un)register global read. More... | |
void | unregisterGlobalRead (MSXDevice &device, word address) |
void | reset () |
Reset (the slot state) More... | |
byte | readMem (word address, EmuTime::param time) |
This reads a byte from the currently selected device. More... | |
void | writeMem (word address, byte value, EmuTime::param time) |
This writes a byte to the currently selected device. More... | |
byte | readIO (word port, EmuTime::param time) |
This read a byte from the given IO-port. More... | |
void | writeIO (word port, byte value, EmuTime::param time) |
This writes a byte to the given IO-port. More... | |
const byte * | getReadCacheLine (word start) const |
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for reading. More... | |
byte * | getWriteCacheLine (word start) const |
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing. More... | |
byte | readIRQVector () |
CPU uses this method to read 'extra' data from the data bus used in interrupt routines. More... | |
void | setPrimarySlots (byte value) |
void | invalidateRWCache (word start, unsigned size, int ps, int ss) |
void | invalidateRCache (word start, unsigned size, int ps, int ss) |
void | invalidateWCache (word start, unsigned size, int ps, int ss) |
void | fillRWCache (unsigned start, unsigned size, const byte *rData, byte *wData, int ps, int ss) |
void | fillRCache (unsigned start, unsigned size, const byte *rData, int ps, int ss) |
void | fillWCache (unsigned start, unsigned size, byte *wData, int ps, int ss) |
byte | peekMem (word address, EmuTime::param time) const |
Peek memory location. More... | |
byte | peekSlottedMem (unsigned address, EmuTime::param time) const |
byte | readSlottedMem (unsigned address, EmuTime::param time) |
void | writeSlottedMem (unsigned address, byte value, EmuTime::param time) |
void | setExpanded (int ps) |
void | unsetExpanded (int ps) |
void | testUnsetExpanded (int ps, std::span< const std::unique_ptr< MSXDevice > > allowed) const |
bool | isExpanded (int ps) const |
void | changeExpanded (bool newExpanded) |
auto | getPrimarySlot (int page) const |
auto | getSecondarySlot (int page) const |
DummyDevice & | getDummyDevice () |
void | insertBreakPoint (BreakPoint bp) |
void | removeBreakPoint (const BreakPoint &bp) |
void | removeBreakPoint (unsigned id) |
void | setWatchPoint (const std::shared_ptr< WatchPoint > &watchPoint) |
void | removeWatchPoint (std::shared_ptr< WatchPoint > watchPoint) |
void | removeWatchPoint (unsigned id) |
const WatchPoints & | getWatchPoints () const |
void | setCondition (DebugCondition cond) |
void | removeCondition (const DebugCondition &cond) |
void | removeCondition (unsigned id) |
void | doBreak () |
void | doStep () |
void | doContinue () |
bool | checkBreakPoints (unsigned pc) |
void | setFastForward (bool fastForward_) |
bool | isFastForward () const |
MSXDevice * | getMSXDevice (int ps, int ss, int page) |
MSXDevice * | getVisibleMSXDevice (int page) |
template<typename Archive > | |
void | serialize (Archive &ar, unsigned version) |
![]() | |
~ProfileCounters () | |
void | tick (CacheLineCounters e) const |
Static Public Member Functions | |
static const BreakPoints & | getBreakPoints () |
static const Conditions & | getConditions () |
static bool | isBreaked () |
static bool | anyBreakPoints () |
static void | cleanup () |
Definition at line 52 of file MSXCPUInterface.hh.
using openmsx::MSXCPUInterface::BreakPoints = std::vector<BreakPoint> |
Definition at line 249 of file MSXCPUInterface.hh.
using openmsx::MSXCPUInterface::Conditions = std::vector<DebugCondition> |
Definition at line 262 of file MSXCPUInterface.hh.
using openmsx::MSXCPUInterface::WatchPoints = std::vector<std::shared_ptr<WatchPoint> > |
Definition at line 256 of file MSXCPUInterface.hh.
|
delete |
|
explicit |
Definition at line 74 of file MSXCPUInterface.cc.
References openmsx::DeviceFactory::createVDPIODelay(), ranges::fill(), openmsx::Reactor::getCommandController(), openmsx::MSXMotherBoard::getMachineConfig(), openmsx::MSXMotherBoard::getReactor(), openmsx::MSXMotherBoard::isTurboR(), openmsx::HardwareConfig::parseSlotMap(), reset(), openmsx::MSXCPU::setInterface(), and xrange().
openmsx::MSXCPUInterface::~MSXCPUInterface | ( | ) |
Definition at line 133 of file MSXCPUInterface.cc.
References isExpanded(), openmsx::MSXCPU::setInterface(), UNREACHABLE, and xrange().
|
inlinestatic |
Definition at line 271 of file MSXCPUInterface.hh.
void openmsx::MSXCPUInterface::changeExpanded | ( | bool | newExpanded | ) |
Definition at line 313 of file MSXCPUInterface.cc.
References openmsx::CacheLine::HIGH, and openmsx::MSXCPU::invalidateAllSlotsRWCache().
Referenced by setExpanded(), setPrimarySlots(), and unsetExpanded().
|
inline |
Definition at line 275 of file MSXCPUInterface.hh.
References checkBreakPoints(), ranges::equal_range(), openmsx::BreakPoint::getAddress(), and isBreaked().
Referenced by checkBreakPoints().
|
static |
Definition at line 1049 of file MSXCPUInterface.cc.
Referenced by openmsx::Interpreter::~Interpreter().
void openmsx::MSXCPUInterface::doBreak | ( | ) |
Definition at line 1013 of file MSXCPUInterface.cc.
References openmsx::Reactor::block(), openmsx::EventDistributor::distributeEvent(), openmsx::MSXCPU::exitCPULoopSync(), openmsx::Reactor::getCliComm(), openmsx::Reactor::getEventDistributor(), openmsx::MSXMotherBoard::getReactor(), isFastForward(), openmsx::CliComm::STATUS, and openmsx::CliComm::update().
void openmsx::MSXCPUInterface::doContinue | ( | ) |
Definition at line 1035 of file MSXCPUInterface.cc.
References openmsx::Reactor::getCliComm(), openmsx::MSXMotherBoard::getReactor(), openmsx::MSXMotherBoard::getRealTime(), isFastForward(), openmsx::RealTime::resync(), openmsx::CliComm::STATUS, openmsx::Reactor::unblock(), and openmsx::CliComm::update().
Referenced by doStep().
void openmsx::MSXCPUInterface::doStep | ( | ) |
Definition at line 1027 of file MSXCPUInterface.cc.
References doContinue(), isFastForward(), and setCondition().
void openmsx::MSXCPUInterface::fillRCache | ( | unsigned | start, |
unsigned | size, | ||
const byte * | rData, | ||
int | ps, | ||
int | ss | ||
) |
Definition at line 640 of file MSXCPUInterface.cc.
References openmsx::MSXCPU::fillRCache(), openmsx::FillRead, utf8::unchecked::size(), and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
Referenced by openmsx::MSXDevice::fillDeviceRCache().
void openmsx::MSXCPUInterface::fillRWCache | ( | unsigned | start, |
unsigned | size, | ||
const byte * | rData, | ||
byte * | wData, | ||
int | ps, | ||
int | ss | ||
) |
Definition at line 635 of file MSXCPUInterface.cc.
References openmsx::FillReadWrite, openmsx::MSXCPU::fillRWCache(), utf8::unchecked::size(), and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
Referenced by openmsx::MSXDevice::fillDeviceRWCache().
void openmsx::MSXCPUInterface::fillWCache | ( | unsigned | start, |
unsigned | size, | ||
byte * | wData, | ||
int | ps, | ||
int | ss | ||
) |
Definition at line 645 of file MSXCPUInterface.cc.
References openmsx::MSXCPU::fillWCache(), openmsx::FillWrite, utf8::unchecked::size(), and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
Referenced by openmsx::MSXDevice::fillDeviceWCache().
|
inlinestatic |
Definition at line 250 of file MSXCPUInterface.hh.
|
inlinestatic |
Definition at line 263 of file MSXCPUInterface.hh.
|
inline |
Definition at line 244 of file MSXCPUInterface.hh.
Referenced by openmsx::VDPIODelay::VDPIODelay().
MSXDevice * openmsx::MSXCPUInterface::getMSXDevice | ( | int | ps, |
int | ss, | ||
int | page | ||
) |
Definition at line 1060 of file MSXCPUInterface.cc.
|
inline |
Definition at line 241 of file MSXCPUInterface.hh.
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for reading.
If it is, a pointer to a buffer containing this interval must be returned. If not, a null pointer must be returned. Cacheable for reading means the data may be read directly from the buffer, thus bypassing the readMem() method, and thus also ignoring EmuTime. The default implementation always returns a null pointer. An interval will never cross a 16KB border. An interval will never contain the address 0xffff.
Definition at line 174 of file MSXCPUInterface.hh.
References openmsx::CacheLine::BITS, openmsx::GetReadCacheLine, and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
|
inline |
Definition at line 242 of file MSXCPUInterface.hh.
|
inline |
Definition at line 296 of file MSXCPUInterface.hh.
|
inline |
Definition at line 257 of file MSXCPUInterface.hh.
Referenced by openmsx::Debugger::transfer().
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
If it is, a pointer to a buffer containing this interval must be returned. If not, a null pointer must be returned. Cacheable for writing means the data may be written directly to the buffer, thus bypassing the writeMem() method, and thus also ignoring EmuTime. The default implementation always returns a null pointer. An interval will never cross a 16KB border. An interval will never contain the address 0xffff.
Definition at line 194 of file MSXCPUInterface.hh.
References openmsx::CacheLine::BITS, openmsx::GetWriteCacheLine, and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
void openmsx::MSXCPUInterface::insertBreakPoint | ( | BreakPoint | bp | ) |
Definition at line 786 of file MSXCPUInterface.cc.
References openmsx::CliComm::DEBUG_UPDT, openmsx::BreakPoint::getAddress(), openmsx::BreakPoint::getId(), tmpStrCat(), openmsx::CliComm::update(), and ranges::upper_bound().
void openmsx::MSXCPUInterface::invalidateRCache | ( | word | start, |
unsigned | size, | ||
int | ps, | ||
int | ss | ||
) |
Definition at line 624 of file MSXCPUInterface.cc.
References openmsx::MSXCPU::invalidateRCache(), openmsx::InvalidateRead, utf8::unchecked::size(), and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
Referenced by openmsx::MSXDevice::invalidateDeviceRCache().
void openmsx::MSXCPUInterface::invalidateRWCache | ( | word | start, |
unsigned | size, | ||
int | ps, | ||
int | ss | ||
) |
Definition at line 619 of file MSXCPUInterface.cc.
References openmsx::InvalidateReadWrite, openmsx::MSXCPU::invalidateRWCache(), utf8::unchecked::size(), and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
Referenced by openmsx::MSXDevice::invalidateDeviceRWCache().
void openmsx::MSXCPUInterface::invalidateWCache | ( | word | start, |
unsigned | size, | ||
int | ps, | ||
int | ss | ||
) |
Definition at line 629 of file MSXCPUInterface.cc.
References openmsx::MSXCPU::invalidateWCache(), openmsx::InvalidateWrite, utf8::unchecked::size(), and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
Referenced by openmsx::MSXDevice::invalidateDeviceWCache().
|
inlinestatic |
Definition at line 265 of file MSXCPUInterface.hh.
Referenced by checkBreakPoints().
|
inline |
Definition at line 238 of file MSXCPUInterface.hh.
Referenced by openmsx::HardwareConfig::parseSlots(), peekMem(), peekSlottedMem(), readSlottedMem(), registerMemDevice(), setExpanded(), setPrimarySlots(), testUnsetExpanded(), unsetExpanded(), writeSlottedMem(), and ~MSXCPUInterface().
|
inline |
Definition at line 293 of file MSXCPUInterface.hh.
Referenced by doBreak(), doContinue(), and doStep().
|
delete |
Peek memory location.
Definition at line 725 of file MSXCPUInterface.cc.
References isExpanded().
Referenced by openmsx::dasm(), and openmsx::instructionLength().
byte openmsx::MSXCPUInterface::peekSlottedMem | ( | unsigned | address, |
EmuTime::param | time | ||
) | const |
Definition at line 734 of file MSXCPUInterface.cc.
References isExpanded().
Referenced by openmsx::MSXMirrorDevice::peekMem().
This read a byte from the given IO-port.
Definition at line 150 of file MSXCPUInterface.hh.
byte openmsx::MSXCPUInterface::readIRQVector | ( | ) |
CPU uses this method to read 'extra' data from the data bus used in interrupt routines.
In MSX this returns always 255.
Definition at line 659 of file MSXCPUInterface.cc.
References openmsx::MSXMotherBoard::readIRQVector().
This reads a byte from the currently selected device.
Definition at line 126 of file MSXCPUInterface.hh.
References openmsx::CacheLine::BITS, openmsx::SlowRead, and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
byte openmsx::MSXCPUInterface::readSlottedMem | ( | unsigned | address, |
EmuTime::param | time | ||
) |
Definition at line 751 of file MSXCPUInterface.cc.
References isExpanded().
Referenced by openmsx::MSXMirrorDevice::readMem().
Devices can register their In ports.
This is normally done in their constructor. Once device are registered, their readIO() method can get called.
Definition at line 338 of file MSXCPUInterface.cc.
Referenced by openmsx::Carnivore2::Carnivore2(), openmsx::ColecoSuperGameModule::ColecoSuperGameModule(), openmsx::MSXMotherBoard::createMapperIO(), openmsx::MSXDeviceSwitch::registerDevice(), openmsx::RomAlAlamiah30in1::RomAlAlamiah30in1(), openmsx::RomArc::RomArc(), openmsx::RomKonamiKeyboardMaster::RomKonamiKeyboardMaster(), and openmsx::RomManbow2::RomManbow2().
Devices can register their Out ports.
This is normally done in their constructor. Once device are registered, their writeIO() method can get called.
Definition at line 350 of file MSXCPUInterface.cc.
Referenced by openmsx::Carnivore2::Carnivore2(), openmsx::ColecoSuperGameModule::ColecoSuperGameModule(), openmsx::MSXMotherBoard::createMapperIO(), openmsx::MegaFlashRomSCCPlus::MegaFlashRomSCCPlus(), openmsx::MSXMidi::MSXMidi(), openmsx::MSXDeviceSwitch::registerDevice(), openmsx::ReproCartridgeV1::ReproCartridgeV1(), openmsx::ReproCartridgeV2::ReproCartridgeV2(), openmsx::RomAlAlamiah30in1::RomAlAlamiah30in1(), openmsx::RomArc::RomArc(), openmsx::RomKonamiKeyboardMaster::RomKonamiKeyboardMaster(), openmsx::RomManbow2::RomManbow2(), openmsx::RomRetroHard31in1::RomRetroHard31in1(), and openmsx::RomZemina90in1::RomZemina90in1().
(Un)register global read.
Definition at line 582 of file MSXCPUInterface.cc.
References openmsx::CacheLine::BITS, openmsx::CacheLine::HIGH, and openmsx::MSXCPU::invalidateAllSlotsRWCache().
Referenced by openmsx::GlobalReadClient< MSXDEVICE, CT_INTERVALS >::GlobalReadClient().
(Un)register global writes.
Definition at line 558 of file MSXCPUInterface.cc.
References openmsx::CacheLine::BITS, openmsx::CacheLine::HIGH, and openmsx::MSXCPU::invalidateAllSlotsRWCache().
Referenced by openmsx::GlobalWriteClient< MSXDEVICE, CT_INTERVALS >::GlobalWriteClient().
void openmsx::MSXCPUInterface::registerMemDevice | ( | MSXDevice & | device, |
int | ps, | ||
int | ss, | ||
unsigned | base, | ||
unsigned | size | ||
) |
Devices can register themself in the MSX slot structure.
This is normally done in their constructor. Once devices are registered their readMem() / writeMem() methods can get called.
Definition at line 516 of file MSXCPUInterface.cc.
References isExpanded(), gl::min(), and utf8::unchecked::size().
void openmsx::MSXCPUInterface::removeBreakPoint | ( | const BreakPoint & | bp | ) |
Definition at line 793 of file MSXCPUInterface.cc.
References openmsx::CliComm::DEBUG_UPDT, ranges::equal_range(), find_unguarded(), openmsx::BreakPoint::getAddress(), openmsx::BreakPoint::getId(), tmpStrCat(), and openmsx::CliComm::update().
void openmsx::MSXCPUInterface::removeBreakPoint | ( | unsigned | id | ) |
Definition at line 800 of file MSXCPUInterface.cc.
References openmsx::CliComm::DEBUG_UPDT, ranges::find(), openmsx::BreakPoint::getId(), tmpStrCat(), and openmsx::CliComm::update().
void openmsx::MSXCPUInterface::removeCondition | ( | const DebugCondition & | cond | ) |
Definition at line 930 of file MSXCPUInterface.cc.
References openmsx::CliComm::DEBUG_UPDT, Math::e, openmsx::DebugCondition::getId(), rfind_unguarded(), tmpStrCat(), and openmsx::CliComm::update().
void openmsx::MSXCPUInterface::removeCondition | ( | unsigned | id | ) |
Definition at line 937 of file MSXCPUInterface.cc.
References openmsx::CliComm::DEBUG_UPDT, ranges::find(), openmsx::DebugCondition::getId(), tmpStrCat(), and openmsx::CliComm::update().
void openmsx::MSXCPUInterface::removeWatchPoint | ( | std::shared_ptr< WatchPoint > | watchPoint | ) |
Definition at line 888 of file MSXCPUInterface.cc.
References openmsx::CliComm::DEBUG_UPDT, end(), ranges::find(), openmsx::WatchPoint::READ_IO, openmsx::WatchPoint::READ_MEM, tmpStrCat(), UNREACHABLE, openmsx::CliComm::update(), openmsx::WatchPoint::WRITE_IO, and openmsx::WatchPoint::WRITE_MEM.
Referenced by removeWatchPoint().
void openmsx::MSXCPUInterface::removeWatchPoint | ( | unsigned | id | ) |
Definition at line 916 of file MSXCPUInterface.cc.
References ranges::find(), openmsx::WatchPoint::getId(), and removeWatchPoint().
bool openmsx::MSXCPUInterface::replace_IO_In | ( | byte | port, |
MSXDevice * | oldDevice, | ||
MSXDevice * | newDevice | ||
) |
These methods replace a previously registered device with a new one.
This method checks whether the current device is the same as the 'oldDevice' parameter.
The intention is that devices using these methods extend (=wrap) the functionality of a previously registered device. Typically the destructor of the wrapping device will perform the inverse replacement.
Definition at line 410 of file MSXCPUInterface.cc.
bool openmsx::MSXCPUInterface::replace_IO_Out | ( | byte | port, |
MSXDevice * | oldDevice, | ||
MSXDevice * | newDevice | ||
) |
Definition at line 421 of file MSXCPUInterface.cc.
void openmsx::MSXCPUInterface::reset | ( | ) |
Reset (the slot state)
Definition at line 651 of file MSXCPUInterface.cc.
References setPrimarySlots(), and xrange().
Referenced by openmsx::MSXMotherBoard::doReset(), MSXCPUInterface(), and openmsx::MSXMotherBoard::powerUp().
void openmsx::MSXCPUInterface::serialize | ( | Archive & | ar, |
unsigned | version | ||
) |
Definition at line 1269 of file MSXCPUInterface.cc.
References setPrimarySlots(), and xrange().
void openmsx::MSXCPUInterface::setCondition | ( | DebugCondition | cond | ) |
Definition at line 924 of file MSXCPUInterface.cc.
References openmsx::CliComm::DEBUG_UPDT, openmsx::DebugCondition::getId(), tmpStrCat(), and openmsx::CliComm::update().
Referenced by doStep().
void openmsx::MSXCPUInterface::setExpanded | ( | int | ps | ) |
Definition at line 240 of file MSXCPUInterface.cc.
References changeExpanded(), isExpanded(), and xrange().
|
inline |
Definition at line 292 of file MSXCPUInterface.hh.
void openmsx::MSXCPUInterface::setPrimarySlots | ( | byte | value | ) |
Definition at line 664 of file MSXCPUInterface.cc.
References changeExpanded(), and isExpanded().
Referenced by reset(), and serialize().
void openmsx::MSXCPUInterface::setWatchPoint | ( | const std::shared_ptr< WatchPoint > & | watchPoint | ) |
Definition at line 848 of file MSXCPUInterface.cc.
References openmsx::CliComm::DEBUG_UPDT, openmsx::WatchPoint::READ_IO, openmsx::WatchPoint::READ_MEM, tmpStrCat(), UNREACHABLE, openmsx::CliComm::update(), openmsx::WatchPoint::WRITE_IO, and openmsx::WatchPoint::WRITE_MEM.
Referenced by openmsx::Debugger::setWatchPoint().
void openmsx::MSXCPUInterface::testUnsetExpanded | ( | int | ps, |
std::span< const std::unique_ptr< MSXDevice > > | allowed | ||
) | const |
Definition at line 254 of file MSXCPUInterface.cc.
References contains(), and isExpanded().
Referenced by openmsx::HardwareConfig::testRemove(), and unsetExpanded().
Definition at line 344 of file MSXCPUInterface.cc.
Referenced by openmsx::MSXMotherBoard::destroyMapperIO(), openmsx::MSXDeviceSwitch::unregisterDevice(), openmsx::Carnivore2::~Carnivore2(), openmsx::ColecoSuperGameModule::~ColecoSuperGameModule(), openmsx::RomAlAlamiah30in1::~RomAlAlamiah30in1(), openmsx::RomArc::~RomArc(), openmsx::RomKonamiKeyboardMaster::~RomKonamiKeyboardMaster(), and openmsx::RomManbow2::~RomManbow2().
Definition at line 356 of file MSXCPUInterface.cc.
Referenced by openmsx::MSXMotherBoard::destroyMapperIO(), openmsx::MSXDeviceSwitch::unregisterDevice(), openmsx::Carnivore2::~Carnivore2(), openmsx::ColecoSuperGameModule::~ColecoSuperGameModule(), openmsx::MegaFlashRomSCCPlus::~MegaFlashRomSCCPlus(), openmsx::MegaFlashRomSCCPlusSD::~MegaFlashRomSCCPlusSD(), openmsx::MSXMidi::~MSXMidi(), openmsx::ReproCartridgeV1::~ReproCartridgeV1(), openmsx::ReproCartridgeV2::~ReproCartridgeV2(), openmsx::RomAlAlamiah30in1::~RomAlAlamiah30in1(), openmsx::RomArc::~RomArc(), openmsx::RomKonamiKeyboardMaster::~RomKonamiKeyboardMaster(), openmsx::RomManbow2::~RomManbow2(), openmsx::RomRetroHard31in1::~RomRetroHard31in1(), and openmsx::RomZemina90in1::~RomZemina90in1().
Definition at line 590 of file MSXCPUInterface.cc.
References openmsx::CacheLine::BITS, g, openmsx::CacheLine::HIGH, openmsx::MSXCPU::invalidateAllSlotsRWCache(), move_pop_back(), and rfind_unguarded().
Referenced by openmsx::GlobalReadClient< MSXDEVICE, CT_INTERVALS >::~GlobalReadClient().
Definition at line 566 of file MSXCPUInterface.cc.
References openmsx::CacheLine::BITS, g, openmsx::CacheLine::HIGH, openmsx::MSXCPU::invalidateAllSlotsRWCache(), move_pop_back(), and rfind_unguarded().
Referenced by openmsx::GlobalWriteClient< MSXDEVICE, CT_INTERVALS >::~GlobalWriteClient().
void openmsx::MSXCPUInterface::unregisterMemDevice | ( | MSXDevice & | device, |
int | ps, | ||
int | ss, | ||
unsigned | base, | ||
unsigned | size | ||
) |
Definition at line 546 of file MSXCPUInterface.cc.
References gl::min(), and utf8::unchecked::size().
void openmsx::MSXCPUInterface::unsetExpanded | ( | int | ps | ) |
Definition at line 299 of file MSXCPUInterface.cc.
References changeExpanded(), isExpanded(), testUnsetExpanded(), and UNREACHABLE.
Referenced by openmsx::HardwareConfig::~HardwareConfig().
This writes a byte to the given IO-port.
Definition at line 158 of file MSXCPUInterface.hh.
This writes a byte to the currently selected device.
Definition at line 137 of file MSXCPUInterface.hh.
References openmsx::CacheLine::BITS, openmsx::SlowWrite, and ProfileCounters< PROFILE_CACHELINES, CacheLineCounters >::tick().
void openmsx::MSXCPUInterface::writeSlottedMem | ( | unsigned | address, |
byte | value, | ||
EmuTime::param | time | ||
) |
Definition at line 768 of file MSXCPUInterface.cc.
References isExpanded().
Referenced by openmsx::MSXMirrorDevice::writeMem().