mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
21 lines
279 B
C++
21 lines
279 B
C++
//DIP switch
|
|
//used for Nintendo Super System emulation
|
|
|
|
#include <sfc/sfc.hpp>
|
|
|
|
namespace SuperFamicom {
|
|
|
|
#include "serialization.cpp"
|
|
DIP dip;
|
|
|
|
auto DIP::power() -> void {
|
|
}
|
|
|
|
auto DIP::read(uint, uint8) -> uint8 {
|
|
return value;
|
|
}
|
|
|
|
auto DIP::write(uint, uint8) -> void {
|
|
}
|
|
|
|
}
|