mirror of
https://github.com/wavemotion-dave/NINTV-DS.git
synced 2025-06-18 13:55:33 -04:00
17 lines
232 B
C++
17 lines
232 B
C++
|
|
#ifndef AY38914INPUTOUTPUT_H
|
|
#define AY38914INPUTOUTPUT_H
|
|
|
|
#include "types.h"
|
|
|
|
class AY38914_InputOutput
|
|
{
|
|
|
|
public:
|
|
virtual UINT16 getInputValue() = 0;
|
|
virtual void setOutputValue(UINT16 value) = 0;
|
|
|
|
};
|
|
|
|
#endif
|