// $Id: RomMajutsushi.hh 5139 2006-02-04 16:59:36Z mthuurne $ #ifndef ROMMAJUTSUSHI_HH #define ROMMAJUTSUSHI_HH #include "RomKonami4.hh" namespace openmsx { class DACSound8U; class RomMajutsushi : public RomKonami4 { public: RomMajutsushi(MSXMotherBoard& motherBoard, const XMLElement& config, const EmuTime& time, std::auto_ptr rom); virtual ~RomMajutsushi(); virtual void reset(const EmuTime& time); virtual void writeMem(word address, byte value, const EmuTime& time); virtual byte* getWriteCacheLine(word address) const; private: std::auto_ptr dac; }; } // namespace openmsx #endif