// $Id: DACSound8U.hh 5785 2006-10-18 15:57:18Z m9710797 $ // This class implements a 8 bit unsigned DAC #ifndef DACSOUND8U_HH #define DACSOUND8U_HH #include "DACSound16S.hh" namespace openmsx { class DACSound8U : public DACSound16S { public: DACSound8U(MSXMixer& mixer, const std::string &name, const std::string& desc, const XMLElement& config, const EmuTime& time); void writeDAC(byte value, const EmuTime& time); }; } // namespace openmsx #endif