mirror of
https://github.com/libretro/bsnes-libretro.git
synced 2024-11-27 02:50:32 +00:00
922a0e420c
byuu says: Added DerKoun's HD mode 7 (up to 2160p), ~100fps boost for fast forwarding, configurable latency settings for waveOut (please configure this yourself), filename case insensitivity, and a few other things.
19 lines
309 B
C++
19 lines
309 B
C++
#include <processor/processor.hpp>
|
|
#include "sm83.hpp"
|
|
|
|
namespace Processor {
|
|
|
|
#include "registers.cpp"
|
|
#include "memory.cpp"
|
|
#include "algorithms.cpp"
|
|
#include "instruction.cpp"
|
|
#include "instructions.cpp"
|
|
#include "serialization.cpp"
|
|
#include "disassembler.cpp"
|
|
|
|
auto SM83::power() -> void {
|
|
r = {};
|
|
}
|
|
|
|
}
|