19 lines
417 B
C++
19 lines
417 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:
|
|
};
|