19 lines
872 B
C++
19 lines
872 B
C++
//////////////////////////////////////////////////////////////////////////
|
||
// Hyper Shot //
|
||
//////////////////////////////////////////////////////////////////////////
|
||
class EXPAD_HyperShot : public EXPAD
|
||
{
|
||
public:
|
||
EXPAD_HyperShot( NES* parent ) : EXPAD( parent ) {}
|
||
|
||
void Reset();
|
||
|
||
void Strobe();
|
||
BYTE Read4017();
|
||
|
||
protected:
|
||
BYTE shotbits;
|
||
|
||
private:
|
||
};
|