openMSX
DummyY8950KeyboardDevice.hh
Go to the documentation of this file.
1 #ifndef DUMMYY8950KEYBOARDDEVICE_HH
2 #define DUMMYY8950KEYBOARDDEVICE_HH
3 
4 #include "Y8950KeyboardDevice.hh"
5 
6 namespace openmsx {
7 
9 {
10 public:
11  virtual void write(byte data, EmuTime::param time);
12  virtual byte read(EmuTime::param time);
13 
14  virtual string_ref getDescription() const;
15  virtual void plugHelper(Connector& connector, EmuTime::param time);
16  virtual void unplugHelper(EmuTime::param time);
17 };
18 
19 } // namespace openmsx
20 
21 #endif