mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 07:02:27 +01:00
byuu says: Changelog: - added MSU1 resume support - updated sfc/dsp, sfc/controller to match my coding style - fixed hiro/Windows Button and ListView::CheckButton in Windows Classic mode
12 lines
183 B
C++
12 lines
183 B
C++
struct Multitap : Controller {
|
|
Multitap(bool port);
|
|
|
|
auto data() -> uint2;
|
|
auto latch(bool data) -> void;
|
|
|
|
private:
|
|
bool latched;
|
|
unsigned counter1;
|
|
unsigned counter2;
|
|
};
|