// $Id: MSXRom.cc 5049 2006-01-16 17:59:50Z m9710797 $ #include "MSXRom.hh" #include "MSXMotherBoard.hh" #include "Rom.hh" namespace openmsx { MSXRom::MSXRom(MSXMotherBoard& motherBoard, const XMLElement& config, const EmuTime& time, std::auto_ptr rom_) : MSXDevice(motherBoard, config, time, rom_->getName()), rom(rom_) , cpu(motherBoard.getCPU()) { } MSXRom::~MSXRom() { } void MSXRom::writeMem(word /*address*/, byte /*value*/, const EmuTime& /*time*/) { // nothing } byte* MSXRom::getWriteCacheLine(word /*address*/) const { return unmappedWrite; } } // namespace openmsx