mirror of
https://github.com/libretro/Mesen.git
synced 2025-01-05 16:28:35 +00:00
18 lines
246 B
C
18 lines
246 B
C
|
#pragma once
|
||
|
#include "stdafx.h"
|
||
|
#include "Zapper.h"
|
||
|
|
||
|
class VsZapper : public Zapper
|
||
|
{
|
||
|
private:
|
||
|
uint32_t _stateBuffer;
|
||
|
|
||
|
protected:
|
||
|
uint8_t RefreshState();
|
||
|
void RefreshStateBuffer();
|
||
|
|
||
|
public:
|
||
|
using Zapper::Zapper;
|
||
|
|
||
|
uint8_t GetPortOutput();
|
||
|
};
|