NINTV-DS/arm9/source/emucore/AY38914_InputOutput.h
2021-09-02 17:32:31 -04:00

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