openMSX
DACSound8U.hh
Go to the documentation of this file.
1// This class implements a 8 bit unsigned DAC
2
3#ifndef DACSOUND8U_HH
4#define DACSOUND8U_HH
5
6#include "DACSound16S.hh"
7
8namespace openmsx {
9
10class DACSound8U final : public DACSound16S
11{
12public:
13 DACSound8U(std::string_view name, static_string_view desc,
14 const DeviceConfig& config);
15
16 void writeDAC(uint8_t value, EmuTime::param time);
17};
18
19} // namespace openmsx
20
21#endif
void writeDAC(uint8_t value, EmuTime::param time)
Definition DACSound8U.cc:17
static_string_view
This file implemented 3 utility functions:
Definition Autofire.cc:9