mirror of https://github.com/bsnes-emu/bsnes.git
22 lines
283 B
C++
22 lines
283 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(uint24, uint8) -> uint8 {
|
||
|
return value;
|
||
|
}
|
||
|
|
||
|
auto DIP::write(uint24, uint8) -> void {
|
||
|
}
|
||
|
|
||
|
}
|