// $Id: DummyDevice.cc 5099 2006-01-28 16:46:35Z m9710797 $ #include "DummyDevice.hh" #include namespace openmsx { DummyDevice::DummyDevice(MSXMotherBoard& motherBoard, const XMLElement& config, const EmuTime& time) : MSXDevice(motherBoard, config, time) { } void DummyDevice::reset(const EmuTime& /*time*/) { // Block usage assert(false); } } // namespace openmsx