forked from sin365/AxibugEmuOnline
19 lines
872 B
C
19 lines
872 B
C
|
<EFBFBD><EFBFBD>//////////////////////////////////////////////////////////////////////////
|
|||
|
// Hyper Shot //
|
|||
|
//////////////////////////////////////////////////////////////////////////
|
|||
|
class EXPAD_HyperShot : public EXPAD
|
|||
|
{
|
|||
|
public:
|
|||
|
EXPAD_HyperShot( NES* parent ) : EXPAD( parent ) {}
|
|||
|
|
|||
|
void Reset();
|
|||
|
|
|||
|
void Strobe();
|
|||
|
BYTE Read4017();
|
|||
|
|
|||
|
protected:
|
|||
|
BYTE shotbits;
|
|||
|
|
|||
|
private:
|
|||
|
};
|
|||
|
|