// $Id: MicrosolFDC.hh 5208 2006-02-28 20:43:11Z m9710797 $ #ifndef MICROSOLFDC_HH #define MICROSOLFDC_HH #include "WD2793BasedFDC.hh" namespace openmsx { class MicrosolFDC : public WD2793BasedFDC { public: MicrosolFDC(MSXMotherBoard& motherBoard, const XMLElement& config, const EmuTime& time); virtual byte readIO(word port, const EmuTime& time); virtual byte peekIO(word port, const EmuTime& time) const; virtual void writeIO(word port, byte value, const EmuTime& time); }; } // namespace openmsx #endif