mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-30 12:30:52 +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();
|
|
}; |