├── .gitattributes ├── .gitignore ├── .gitmodules ├── CHANGES.txt ├── README.md ├── appveyor.yml ├── bsnes ├── Makefile ├── Snesida │ ├── ida_debmod.h │ ├── ida_debug.cpp │ ├── ida_plugin.cpp │ ├── ida_plugin.h │ ├── ida_registers.h │ ├── snesida.vcxproj │ ├── snesida.vcxproj.filters │ └── snesida.vcxproj.user ├── cc.bat ├── clean.bat ├── data │ ├── Info.plist │ ├── bsnes.Manifest │ ├── bsnes.desktop │ ├── bsnes.icns │ ├── bsnes.ico │ ├── bsnes.png │ ├── bsnes.svg │ ├── bsnes_512.png │ ├── bsxdat │ │ ├── BSX0121-0.bin │ │ ├── BSX0122-0.bin │ │ ├── BSX0123-0.bin │ │ └── BSX0124-0.bin │ ├── cheats.xml │ ├── default.cpu.sym │ ├── default.dsp.sym │ ├── default.sa1.sym │ ├── default.sgb.sym │ ├── default.smp.sym │ ├── default_sa1.cpu.sym │ └── default_sfx.cpu.sym ├── gen-cpp │ ├── BsnesDebugger.cpp │ ├── BsnesDebugger.h │ ├── IdaClient.cpp │ ├── IdaClient.h │ ├── debug_proto_types.cpp │ └── debug_proto_types.h ├── launcher │ ├── bsnes.Manifest │ ├── bsnes.ico │ ├── cc.bat │ ├── cc.sh │ ├── launcher.cpp │ └── resource.rc ├── libco │ ├── amd64.c │ ├── amd64_gcc.c │ ├── arm.c │ ├── fiber.c │ ├── libco.c │ ├── libco.h │ ├── ppc.c │ ├── sjlj.c │ ├── ucontext.c │ ├── x86.c │ └── x86_gcc.c ├── obj │ ├── .gitignore │ ├── accuracy │ │ └── .gitignore │ ├── compatibility │ │ └── .gitignore │ └── performance │ │ └── .gitignore ├── out │ └── .gitignore ├── ruby │ ├── audio.hpp │ ├── audio │ │ ├── alsa.cpp │ │ ├── ao.cpp │ │ ├── directsound.cpp │ │ ├── openal.cpp │ │ ├── oss.cpp │ │ ├── pulseaudio.cpp │ │ ├── pulseaudiosimple.cpp │ │ ├── xaudio2.cpp │ │ └── xaudio2.hpp │ ├── input.hpp │ ├── input │ │ ├── directinput.cpp │ │ ├── macos.cpp │ │ ├── rawinput.cpp │ │ ├── sdl.cpp │ │ ├── x.cpp │ │ └── xlibkeys.hpp │ ├── ruby.cpp │ ├── ruby.hpp │ ├── ruby_audio.cpp │ ├── ruby_impl.cpp │ ├── video.hpp │ └── video │ │ ├── direct3d.cpp │ │ ├── directdraw.cpp │ │ ├── gdi.cpp │ │ ├── glx.cpp │ │ ├── opengl.hpp │ │ ├── qtopengl.cpp │ │ ├── qtraster.cpp │ │ ├── sdl.cpp │ │ ├── wgl.cpp │ │ └── xv.cpp ├── snes │ ├── Makefile │ ├── alt │ │ ├── cpu │ │ │ ├── cpu.cpp │ │ │ ├── cpu.hpp │ │ │ ├── dma.cpp │ │ │ ├── memory.cpp │ │ │ ├── mmio.cpp │ │ │ ├── serialization.cpp │ │ │ └── timing.cpp │ │ ├── dsp │ │ │ ├── SPC_DSP.cpp │ │ │ ├── SPC_DSP.h │ │ │ ├── blargg_common.h │ │ │ ├── blargg_config.h │ │ │ ├── blargg_endian.h │ │ │ ├── blargg_source.h │ │ │ ├── dsp.cpp │ │ │ ├── dsp.hpp │ │ │ └── serialization.cpp │ │ └── ppu │ │ │ ├── debugger │ │ │ ├── debugger.cpp │ │ │ └── debugger.hpp │ │ │ ├── memory │ │ │ ├── memory.cpp │ │ │ └── memory.hpp │ │ │ ├── mmio │ │ │ ├── mmio.cpp │ │ │ └── mmio.hpp │ │ │ ├── ppu.cpp │ │ │ ├── ppu.hpp │ │ │ ├── render │ │ │ ├── addsub.cpp │ │ │ ├── bg.cpp │ │ │ ├── cache.cpp │ │ │ ├── line.cpp │ │ │ ├── mode7.cpp │ │ │ ├── oam.cpp │ │ │ ├── render.cpp │ │ │ ├── render.hpp │ │ │ └── windows.cpp │ │ │ └── serialization.cpp │ ├── audio │ │ ├── audio.cpp │ │ └── audio.hpp │ ├── cartridge │ │ ├── cartridge.cpp │ │ ├── cartridge.hpp │ │ ├── serialization.cpp │ │ └── xml.cpp │ ├── cheat │ │ ├── cheat-inline.hpp │ │ ├── cheat.cpp │ │ └── cheat.hpp │ ├── chip │ │ ├── bsx │ │ │ ├── bsx.cpp │ │ │ ├── bsx.hpp │ │ │ ├── bsx_base.cpp │ │ │ ├── bsx_cart.cpp │ │ │ ├── bsx_flash.cpp │ │ │ └── serialization.cpp │ │ ├── chip.hpp │ │ ├── cx4 │ │ │ ├── bus.cpp │ │ │ ├── bus.hpp │ │ │ ├── cx4.cpp │ │ │ ├── cx4.hpp │ │ │ ├── data.cpp │ │ │ ├── instructions.cpp │ │ │ ├── memory.cpp │ │ │ ├── registers.cpp │ │ │ └── serialization.cpp │ │ ├── msu1 │ │ │ ├── msu1.cpp │ │ │ ├── msu1.hpp │ │ │ └── serialization.cpp │ │ ├── necdsp │ │ │ ├── disassembler.cpp │ │ │ ├── memory.cpp │ │ │ ├── necdsp.cpp │ │ │ ├── necdsp.hpp │ │ │ ├── registers.hpp │ │ │ └── serialization.cpp │ │ ├── obc1 │ │ │ ├── obc1.cpp │ │ │ ├── obc1.hpp │ │ │ └── serialization.cpp │ │ ├── sa1 │ │ │ ├── bus │ │ │ │ ├── bus.cpp │ │ │ │ └── bus.hpp │ │ │ ├── debugger │ │ │ │ ├── debugger.cpp │ │ │ │ └── debugger.hpp │ │ │ ├── dma │ │ │ │ ├── dma.cpp │ │ │ │ └── dma.hpp │ │ │ ├── memory │ │ │ │ ├── memory.cpp │ │ │ │ └── memory.hpp │ │ │ ├── mmio │ │ │ │ ├── mmio.cpp │ │ │ │ └── mmio.hpp │ │ │ ├── sa1.cpp │ │ │ ├── sa1.hpp │ │ │ └── serialization.cpp │ │ ├── sdd1 │ │ │ ├── sdd1.cpp │ │ │ ├── sdd1.hpp │ │ │ ├── sdd1emu.cpp │ │ │ ├── sdd1emu.hpp │ │ │ └── serialization.cpp │ │ ├── serial │ │ │ ├── serial.cpp │ │ │ ├── serial.hpp │ │ │ └── serialization.cpp │ │ ├── spc7110 │ │ │ ├── decomp.cpp │ │ │ ├── decomp.hpp │ │ │ ├── serialization.cpp │ │ │ ├── spc7110.cpp │ │ │ └── spc7110.hpp │ │ ├── srtc │ │ │ ├── serialization.cpp │ │ │ ├── srtc.cpp │ │ │ └── srtc.hpp │ │ ├── st0018 │ │ │ ├── st0018.cpp │ │ │ └── st0018.hpp │ │ ├── superfx │ │ │ ├── bus │ │ │ │ ├── bus.cpp │ │ │ │ └── bus.hpp │ │ │ ├── core │ │ │ │ ├── core.cpp │ │ │ │ ├── core.hpp │ │ │ │ ├── opcode_table.cpp │ │ │ │ ├── opcodes.cpp │ │ │ │ └── registers.hpp │ │ │ ├── debugger │ │ │ │ ├── debugger.cpp │ │ │ │ └── debugger.hpp │ │ │ ├── disasm │ │ │ │ ├── disasm.cpp │ │ │ │ └── disasm.hpp │ │ │ ├── memory │ │ │ │ ├── memory.cpp │ │ │ │ └── memory.hpp │ │ │ ├── mmio │ │ │ │ ├── mmio.cpp │ │ │ │ └── mmio.hpp │ │ │ ├── serialization.cpp │ │ │ ├── superfx.cpp │ │ │ ├── superfx.hpp │ │ │ └── timing │ │ │ │ ├── timing.cpp │ │ │ │ └── timing.hpp │ │ └── supergameboy │ │ │ ├── debugger │ │ │ ├── debugger.cpp │ │ │ ├── debugger.hpp │ │ │ ├── disassembler.cpp │ │ │ └── disassembler.hpp │ │ │ ├── serialization.cpp │ │ │ ├── supergameboy.cpp │ │ │ └── supergameboy.hpp │ ├── config │ │ ├── config.cpp │ │ └── config.hpp │ ├── cpu │ │ ├── core │ │ │ ├── algorithms.cpp │ │ │ ├── core.cpp │ │ │ ├── core.hpp │ │ │ ├── disassembler │ │ │ │ ├── disassembler.cpp │ │ │ │ └── disassembler.hpp │ │ │ ├── memory.hpp │ │ │ ├── opcode_misc.cpp │ │ │ ├── opcode_pc.cpp │ │ │ ├── opcode_read.cpp │ │ │ ├── opcode_rmw.cpp │ │ │ ├── opcode_write.cpp │ │ │ ├── registers.hpp │ │ │ ├── serialization.cpp │ │ │ └── table.cpp │ │ ├── cpu.cpp │ │ ├── cpu.hpp │ │ ├── debugger │ │ │ ├── analyst.cpp │ │ │ ├── analyst.hpp │ │ │ ├── debugger.cpp │ │ │ └── debugger.hpp │ │ ├── dma │ │ │ ├── dma.cpp │ │ │ └── dma.hpp │ │ ├── memory │ │ │ ├── memory.cpp │ │ │ └── memory.hpp │ │ ├── mmio │ │ │ ├── mmio.cpp │ │ │ └── mmio.hpp │ │ ├── serialization.cpp │ │ └── timing │ │ │ ├── irq.cpp │ │ │ ├── joypad.cpp │ │ │ ├── timing.cpp │ │ │ └── timing.hpp │ ├── debugger │ │ ├── debugger.cpp │ │ └── debugger.hpp │ ├── dsp │ │ ├── brr.cpp │ │ ├── counter.cpp │ │ ├── debugger │ │ │ ├── debugger.cpp │ │ │ └── debugger.hpp │ │ ├── dsp.cpp │ │ ├── dsp.hpp │ │ ├── echo.cpp │ │ ├── envelope.cpp │ │ ├── gaussian.cpp │ │ ├── misc.cpp │ │ ├── serialization.cpp │ │ └── voice.cpp │ ├── input │ │ ├── input.cpp │ │ └── input.hpp │ ├── interface │ │ └── interface.hpp │ ├── libsnes │ │ ├── libsnes.cpp │ │ └── libsnes.hpp │ ├── memory │ │ ├── memory-inline.hpp │ │ ├── memory.cpp │ │ ├── memory.hpp │ │ └── serialization.cpp │ ├── ppu │ │ ├── background │ │ │ ├── background.cpp │ │ │ ├── background.hpp │ │ │ └── mode7.cpp │ │ ├── counter │ │ │ ├── counter-inline.hpp │ │ │ ├── counter.hpp │ │ │ └── serialization.cpp │ │ ├── debugger │ │ │ ├── debugger.cpp │ │ │ └── debugger.hpp │ │ ├── mmio │ │ │ ├── mmio.cpp │ │ │ └── mmio.hpp │ │ ├── ppu.cpp │ │ ├── ppu.hpp │ │ ├── screen │ │ │ ├── screen.cpp │ │ │ └── screen.hpp │ │ ├── serialization.cpp │ │ ├── sprite │ │ │ ├── list.cpp │ │ │ ├── sprite.cpp │ │ │ └── sprite.hpp │ │ └── window │ │ │ ├── window.cpp │ │ │ └── window.hpp │ ├── profile-accuracy.hpp │ ├── profile-compatibility.hpp │ ├── profile-performance.hpp │ ├── scheduler │ │ ├── scheduler.cpp │ │ └── scheduler.hpp │ ├── smp │ │ ├── core │ │ │ ├── algorithms.cpp │ │ │ ├── core.cpp │ │ │ ├── core.hpp │ │ │ ├── disassembler │ │ │ │ ├── disassembler.cpp │ │ │ │ └── disassembler.hpp │ │ │ ├── memory.hpp │ │ │ ├── opcode_misc.cpp │ │ │ ├── opcode_mov.cpp │ │ │ ├── opcode_pc.cpp │ │ │ ├── opcode_read.cpp │ │ │ ├── opcode_rmw.cpp │ │ │ ├── registers.hpp │ │ │ ├── serialization.cpp │ │ │ └── table.cpp │ │ ├── debugger │ │ │ ├── debugger.cpp │ │ │ └── debugger.hpp │ │ ├── iplrom.cpp │ │ ├── memory │ │ │ ├── memory.cpp │ │ │ └── memory.hpp │ │ ├── mmio │ │ │ ├── mmio.cpp │ │ │ └── mmio.hpp │ │ ├── serialization.cpp │ │ ├── smp.cpp │ │ ├── smp.hpp │ │ └── timing │ │ │ ├── timing.cpp │ │ │ └── timing.hpp │ ├── snes.hpp │ ├── system │ │ ├── random.cpp │ │ ├── serialization.cpp │ │ ├── system.cpp │ │ └── system.hpp │ └── video │ │ ├── video.cpp │ │ └── video.hpp ├── sync.sh ├── thrift │ ├── debug_proto.thrift │ ├── libevent │ │ ├── bin │ │ │ └── event_rpcgen.py │ │ ├── include │ │ │ ├── evdns.h │ │ │ ├── event.h │ │ │ ├── event2 │ │ │ │ ├── buffer.h │ │ │ │ ├── buffer_compat.h │ │ │ │ ├── bufferevent.h │ │ │ │ ├── bufferevent_compat.h │ │ │ │ ├── bufferevent_struct.h │ │ │ │ ├── dns.h │ │ │ │ ├── dns_compat.h │ │ │ │ ├── dns_struct.h │ │ │ │ ├── event-config.h │ │ │ │ ├── event.h │ │ │ │ ├── event_compat.h │ │ │ │ ├── event_struct.h │ │ │ │ ├── http.h │ │ │ │ ├── http_compat.h │ │ │ │ ├── http_struct.h │ │ │ │ ├── keyvalq_struct.h │ │ │ │ ├── listener.h │ │ │ │ ├── rpc.h │ │ │ │ ├── rpc_compat.h │ │ │ │ ├── rpc_struct.h │ │ │ │ ├── tag.h │ │ │ │ ├── tag_compat.h │ │ │ │ ├── thread.h │ │ │ │ ├── util.h │ │ │ │ └── visibility.h │ │ │ ├── evhttp.h │ │ │ ├── evrpc.h │ │ │ └── evutil.h │ │ └── lib │ │ │ ├── cmake │ │ │ └── libevent │ │ │ │ ├── LibeventConfig.cmake │ │ │ │ ├── LibeventConfigVersion.cmake │ │ │ │ ├── LibeventTargets-static-release.cmake │ │ │ │ └── LibeventTargets-static.cmake │ │ │ ├── event_32.lib │ │ │ ├── event_64.lib │ │ │ ├── event_core_32.lib │ │ │ ├── event_core_64.lib │ │ │ ├── event_extra_32.lib │ │ │ ├── event_extra_64.lib │ │ │ └── pkgconfig │ │ │ ├── libevent.pc │ │ │ ├── libevent_core.pc │ │ │ └── libevent_extra.pc │ ├── thrift │ │ ├── TApplicationException.h │ │ ├── TBase.h │ │ ├── TConfiguration.h │ │ ├── TDispatchProcessor.h │ │ ├── TLogging.h │ │ ├── TOutput.h │ │ ├── TProcessor.h │ │ ├── TToString.h │ │ ├── Thrift.h │ │ ├── async │ │ │ ├── TAsyncBufferProcessor.h │ │ │ ├── TAsyncChannel.h │ │ │ ├── TAsyncDispatchProcessor.h │ │ │ ├── TAsyncProcessor.h │ │ │ ├── TAsyncProtocolProcessor.h │ │ │ ├── TConcurrentClientSyncInfo.h │ │ │ ├── TEvhttpClientChannel.h │ │ │ └── TEvhttpServer.h │ │ ├── concurrency │ │ │ ├── Exception.h │ │ │ ├── FunctionRunner.h │ │ │ ├── Monitor.h │ │ │ ├── Mutex.h │ │ │ ├── Thread.h │ │ │ ├── ThreadFactory.h │ │ │ ├── ThreadManager.h │ │ │ └── TimerManager.h │ │ ├── processor │ │ │ ├── PeekProcessor.h │ │ │ ├── StatsProcessor.h │ │ │ └── TMultiplexedProcessor.h │ │ ├── protocol │ │ │ ├── TBase64Utils.h │ │ │ ├── TBinaryProtocol.h │ │ │ ├── TBinaryProtocol.tcc │ │ │ ├── TCompactProtocol.h │ │ │ ├── TCompactProtocol.tcc │ │ │ ├── TDebugProtocol.h │ │ │ ├── TEnum.h │ │ │ ├── THeaderProtocol.h │ │ │ ├── TJSONProtocol.h │ │ │ ├── TList.h │ │ │ ├── TMap.h │ │ │ ├── TMultiplexedProtocol.h │ │ │ ├── TProtocol.h │ │ │ ├── TProtocolDecorator.h │ │ │ ├── TProtocolException.h │ │ │ ├── TProtocolTap.h │ │ │ ├── TProtocolTypes.h │ │ │ ├── TSet.h │ │ │ └── TVirtualProtocol.h │ │ ├── qt │ │ │ ├── CMakeLists.txt │ │ │ ├── TQIODeviceTransport.h │ │ │ └── TQTcpServer.h │ │ ├── server │ │ │ ├── TConnectedClient.h │ │ │ ├── TNonblockingServer.h │ │ │ ├── TServer.h │ │ │ ├── TServerFramework.h │ │ │ ├── TSimpleServer.h │ │ │ ├── TThreadPoolServer.h │ │ │ └── TThreadedServer.h │ │ ├── thrift-config.h │ │ ├── thrift_export.h │ │ ├── transport │ │ │ ├── PlatformSocket.h │ │ │ ├── SocketCommon.h │ │ │ ├── TBufferTransports.h │ │ │ ├── TFDTransport.h │ │ │ ├── TFileTransport.h │ │ │ ├── THeaderTransport.h │ │ │ ├── THttpClient.h │ │ │ ├── THttpServer.h │ │ │ ├── THttpTransport.h │ │ │ ├── TNonblockingSSLServerSocket.h │ │ │ ├── TNonblockingServerSocket.h │ │ │ ├── TNonblockingServerTransport.h │ │ │ ├── TPipe.h │ │ │ ├── TPipeServer.h │ │ │ ├── TSSLServerSocket.h │ │ │ ├── TSSLSocket.h │ │ │ ├── TServerSocket.h │ │ │ ├── TServerTransport.h │ │ │ ├── TShortReadTransport.h │ │ │ ├── TSimpleFileTransport.h │ │ │ ├── TSocket.h │ │ │ ├── TSocketPool.h │ │ │ ├── TSocketUtils.h │ │ │ ├── TTransport.h │ │ │ ├── TTransportException.h │ │ │ ├── TTransportUtils.h │ │ │ ├── TVirtualTransport.h │ │ │ └── TZlibTransport.h │ │ └── windows │ │ │ ├── GetTimeOfDay.h │ │ │ ├── Operators.h │ │ │ ├── OverlappedSubmissionThread.h │ │ │ ├── SocketPair.h │ │ │ ├── Sync.h │ │ │ ├── TWinsockSingleton.h │ │ │ ├── WinFcntl.h │ │ │ └── config.h │ ├── thrift_32.lib │ ├── thrift_64.lib │ ├── thriftd_32.lib │ ├── thriftd_64.lib │ ├── thriftnb_32.lib │ ├── thriftnb_64.lib │ ├── thriftnbd_32.lib │ └── thriftnbd_64.lib ├── ui-qt │ ├── Makefile │ ├── application │ │ ├── application.cpp │ │ ├── application.moc.hpp │ │ ├── arguments.cpp │ │ └── init.cpp │ ├── base │ │ ├── about.cpp │ │ ├── about.moc.hpp │ │ ├── base.cpp │ │ ├── filebrowser.cpp │ │ ├── filebrowser.moc.hpp │ │ ├── htmlviewer.cpp │ │ ├── htmlviewer.moc.hpp │ │ ├── loader.cpp │ │ ├── loader.moc.hpp │ │ ├── main.cpp │ │ ├── main.moc.hpp │ │ ├── stateselect.cpp │ │ └── stateselect.moc.hpp │ ├── cartridge │ │ ├── cartridge.cpp │ │ └── cartridge.hpp │ ├── config.cpp │ ├── config.hpp │ ├── data │ │ ├── documentation.html │ │ ├── icons-16x16 │ │ │ ├── dbg-break.png │ │ │ ├── dbg-run.png │ │ │ ├── dbg-step-out.png │ │ │ ├── dbg-step-over.png │ │ │ ├── dbg-step.png │ │ │ ├── folder-new.png │ │ │ ├── go-up.png │ │ │ ├── item-check-off.png │ │ │ ├── item-check-on.png │ │ │ ├── item-radio-off.png │ │ │ ├── item-radio-on.png │ │ │ ├── mem-find.png │ │ │ ├── mem-next-code.png │ │ │ ├── mem-next-data.png │ │ │ ├── mem-next-unknown.png │ │ │ ├── mem-prev-code.png │ │ │ ├── mem-prev-data.png │ │ │ └── mem-prev-unknown.png │ │ ├── license.html │ │ └── logo.png │ ├── debugger │ │ ├── debugger.cpp │ │ ├── debugger.moc.hpp │ │ ├── debuggerview.cpp │ │ ├── debuggerview.moc.hpp │ │ ├── disassembler │ │ │ ├── disassemblerview.cpp │ │ │ ├── disassemblerview.moc.hpp │ │ │ ├── line.hpp │ │ │ ├── processor │ │ │ │ ├── common_processor.cpp │ │ │ │ ├── common_processor.hpp │ │ │ │ ├── cpu_processor.cpp │ │ │ │ ├── cpu_processor.hpp │ │ │ │ ├── processor.cpp │ │ │ │ ├── processor.hpp │ │ │ │ ├── sfx_processor.cpp │ │ │ │ ├── sfx_processor.hpp │ │ │ │ ├── sgb_processor.cpp │ │ │ │ ├── sgb_processor.hpp │ │ │ │ ├── smp_processor.cpp │ │ │ │ └── smp_processor.hpp │ │ │ ├── symbols │ │ │ │ ├── adapters │ │ │ │ │ ├── fma_symbol_file.cpp │ │ │ │ │ ├── fma_symbol_file.hpp │ │ │ │ │ ├── symbol_file_interface.hpp │ │ │ │ │ ├── vice_label_file.cpp │ │ │ │ │ ├── vice_label_file.hpp │ │ │ │ │ ├── wla_symbol_file.cpp │ │ │ │ │ └── wla_symbol_file.hpp │ │ │ │ ├── symbol_file_adapters.cpp │ │ │ │ ├── symbol_file_adapters.hpp │ │ │ │ ├── symbol_map.cpp │ │ │ │ └── symbol_map.moc.hpp │ │ │ ├── symbolsview.cpp │ │ │ └── symbolsview.moc.hpp │ │ ├── ppu │ │ │ ├── base-renderer.cpp │ │ │ ├── base-renderer.hpp │ │ │ ├── cgram-viewer.cpp │ │ │ ├── cgram-viewer.moc.hpp │ │ │ ├── cgram-widget.cpp │ │ │ ├── cgram-widget.moc.hpp │ │ │ ├── image-grid-widget.cpp │ │ │ ├── image-grid-widget.moc.hpp │ │ │ ├── oam-data-model.cpp │ │ │ ├── oam-data-model.moc.hpp │ │ │ ├── oam-graphics-scene.cpp │ │ │ ├── oam-graphics-scene.moc.hpp │ │ │ ├── oam-viewer.cpp │ │ │ ├── oam-viewer.moc.hpp │ │ │ ├── tile-renderer.cpp │ │ │ ├── tile-renderer.hpp │ │ │ ├── tile-viewer.cpp │ │ │ ├── tile-viewer.moc.hpp │ │ │ ├── tilemap-renderer.cpp │ │ │ ├── tilemap-renderer.hpp │ │ │ ├── tilemap-viewer.cpp │ │ │ └── tilemap-viewer.moc.hpp │ │ ├── registeredit.cpp │ │ ├── registeredit.moc.hpp │ │ ├── remote_debugger.cpp │ │ ├── tools │ │ │ ├── breakpoint.cpp │ │ │ ├── breakpoint.moc.hpp │ │ │ ├── memory.cpp │ │ │ ├── memory.moc.hpp │ │ │ ├── properties.cpp │ │ │ ├── properties.moc.hpp │ │ │ └── qhexedit2 │ │ │ │ ├── commands.cpp │ │ │ │ ├── commands.moc.hpp │ │ │ │ ├── license.txt │ │ │ │ ├── qhexedit.cpp │ │ │ │ └── qhexedit.moc.hpp │ │ ├── tracer.cpp │ │ └── tracer.moc.hpp │ ├── input │ │ ├── controller.cpp │ │ ├── controller.hpp │ │ ├── input.cpp │ │ ├── input.hpp │ │ ├── userinterface-emulationspeed.cpp │ │ ├── userinterface-general.cpp │ │ ├── userinterface-states.cpp │ │ ├── userinterface-system.cpp │ │ ├── userinterface-videosettings.cpp │ │ └── userinterface.hpp │ ├── interface.cpp │ ├── interface.hpp │ ├── link │ │ ├── filter.cpp │ │ ├── filter.hpp │ │ ├── music.cpp │ │ ├── music.hpp │ │ ├── reader.cpp │ │ └── reader.hpp │ ├── main.cpp │ ├── movie │ │ ├── movie.cpp │ │ └── movie.hpp │ ├── platform │ │ ├── platform_osx.cpp │ │ ├── platform_win.cpp │ │ └── platform_x.cpp │ ├── resource │ │ ├── resource.qrc │ │ └── resource.rc │ ├── settings │ │ ├── advanced.cpp │ │ ├── advanced.moc.hpp │ │ ├── audio.cpp │ │ ├── audio.moc.hpp │ │ ├── bsx.cpp │ │ ├── bsx.moc.hpp │ │ ├── input.cpp │ │ ├── input.moc.hpp │ │ ├── paths.cpp │ │ ├── paths.moc.hpp │ │ ├── profile.cpp │ │ ├── profile.moc.hpp │ │ ├── settings.cpp │ │ ├── settings.moc.hpp │ │ ├── video.cpp │ │ └── video.moc.hpp │ ├── state │ │ ├── state.cpp │ │ └── state.hpp │ ├── tools │ │ ├── cheateditor.cpp │ │ ├── cheateditor.moc.hpp │ │ ├── cheatfinder.cpp │ │ ├── cheatfinder.moc.hpp │ │ ├── effecttoggle.cpp │ │ ├── effecttoggle.moc.hpp │ │ ├── manifestviewer.cpp │ │ ├── manifestviewer.moc.hpp │ │ ├── soundviewer.cpp │ │ ├── soundviewer.moc.hpp │ │ ├── statemanager.cpp │ │ ├── statemanager.moc.hpp │ │ ├── tools.cpp │ │ └── tools.moc.hpp │ ├── ui-base.hpp │ └── utility │ │ ├── system-state.cpp │ │ ├── utility.cpp │ │ ├── utility.hpp │ │ └── window.cpp ├── uname.bat └── vstudio │ └── bsnes │ ├── bsnes.sln │ ├── bsnes.vcxproj │ ├── bsnes.vcxproj.filters │ └── bsnes.vcxproj.user ├── common ├── nall │ ├── Makefile │ ├── algorithm.hpp │ ├── any.hpp │ ├── array.hpp │ ├── base64.hpp │ ├── bit.hpp │ ├── bps │ │ ├── delta.hpp │ │ ├── linear.hpp │ │ ├── metadata.hpp │ │ └── patch.hpp │ ├── concept.hpp │ ├── config.hpp │ ├── crc32.hpp │ ├── detect.hpp │ ├── dictionary.hpp │ ├── directory.hpp │ ├── dl.hpp │ ├── endian.hpp │ ├── file.hpp │ ├── filemap.hpp │ ├── foreach.hpp │ ├── function.hpp │ ├── input.hpp │ ├── lzss.hpp │ ├── moduloarray.hpp │ ├── platform.hpp │ ├── priorityqueue.hpp │ ├── property.hpp │ ├── qt │ │ ├── Makefile │ │ ├── check-action.moc.hpp │ │ ├── check-delegate.moc.hpp │ │ ├── combo-delegate.moc.hpp │ │ ├── concept.hpp │ │ ├── file-dialog.moc.hpp │ │ ├── radio-action.moc.hpp │ │ └── window.moc.hpp │ ├── random.hpp │ ├── serial.hpp │ ├── serializer.hpp │ ├── sha256.hpp │ ├── snes │ │ ├── cartridge.hpp │ │ ├── cpu.hpp │ │ ├── sgb.hpp │ │ └── smp.hpp │ ├── sort.hpp │ ├── static.hpp │ ├── stdint.hpp │ ├── string.hpp │ ├── string │ │ ├── base.hpp │ │ ├── bsv.hpp │ │ ├── cast.hpp │ │ ├── compare.hpp │ │ ├── convert.hpp │ │ ├── core.hpp │ │ ├── filename.hpp │ │ ├── math.hpp │ │ ├── platform.hpp │ │ ├── replace.hpp │ │ ├── split.hpp │ │ ├── strl.hpp │ │ ├── strpos.hpp │ │ ├── trim.hpp │ │ ├── utility.hpp │ │ ├── variadic.hpp │ │ ├── wrapper.hpp │ │ └── xml.hpp │ ├── ups.hpp │ ├── utf8.hpp │ ├── utility.hpp │ ├── varint.hpp │ └── vector.hpp └── zlib │ ├── adler32.c │ ├── crc32.c │ ├── crc32.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── readme.txt │ ├── zconf.h │ ├── zlib.h │ ├── zlib.txt │ ├── zutil.c │ └── zutil.h ├── snesfilter ├── 2xsai │ ├── 2xsai.cpp │ ├── 2xsai.hpp │ └── implementation.cpp ├── Makefile ├── cc.bat ├── clean.bat ├── direct │ ├── direct.cpp │ └── direct.hpp ├── hq2x │ ├── hq2x.cpp │ └── hq2x.hpp ├── lq2x │ ├── lq2x.cpp │ └── lq2x.hpp ├── ntsc │ ├── ntsc.cpp │ ├── ntsc.moc.hpp │ └── snes_ntsc │ │ ├── snes_ntsc.c │ │ ├── snes_ntsc.h │ │ ├── snes_ntsc_config.h │ │ └── snes_ntsc_impl.h ├── obj │ └── .gitignore ├── pixellate2x │ ├── pixellate2x.cpp │ └── pixellate2x.hpp ├── scale2x │ ├── scale2x.cpp │ └── scale2x.hpp ├── snesfilter.cpp ├── snesfilter.hpp ├── sync.sh └── uname.bat ├── snesmusic ├── Makefile ├── bitmap_font.cpp ├── bitmap_font.h ├── cc.bat ├── clean.bat ├── obj │ └── .gitignore ├── snesmusic.cpp ├── snesmusic.hpp └── uname.bat ├── snesreader ├── 7z_C │ ├── 7z.h │ ├── 7zAlloc.c │ ├── 7zAlloc.h │ ├── 7zBuf.c │ ├── 7zBuf.h │ ├── 7zC.txt │ ├── 7zCrc.c │ ├── 7zCrc.h │ ├── 7zCrcOpt.c │ ├── 7zDec.c │ ├── 7zIn.c │ ├── 7zStream.c │ ├── Bcj2.c │ ├── Bcj2.h │ ├── Bra.c │ ├── Bra.h │ ├── Bra86.c │ ├── CpuArch.c │ ├── CpuArch.h │ ├── Lzma2Dec.c │ ├── Lzma2Dec.h │ ├── LzmaDec.c │ ├── LzmaDec.h │ ├── Ppmd.h │ ├── Ppmd7.c │ ├── Ppmd7.h │ ├── Ppmd7Dec.c │ ├── Types.h │ ├── lzma.txt │ └── readme.txt ├── Makefile ├── cc.bat ├── clean.bat ├── fex │ ├── Binary_Extractor.cpp │ ├── Binary_Extractor.h │ ├── Data_Reader.cpp │ ├── Data_Reader.h │ ├── File_Extractor.cpp │ ├── File_Extractor.h │ ├── Gzip_Extractor.cpp │ ├── Gzip_Extractor.h │ ├── Gzip_Reader.cpp │ ├── Gzip_Reader.h │ ├── Rar_Extractor.cpp │ ├── Rar_Extractor.h │ ├── Zip7_Extractor.cpp │ ├── Zip7_Extractor.h │ ├── Zip_Extractor.cpp │ ├── Zip_Extractor.h │ ├── Zlib_Inflater.cpp │ ├── Zlib_Inflater.h │ ├── blargg_common.cpp │ ├── blargg_common.h │ ├── blargg_config.h │ ├── blargg_endian.h │ ├── blargg_errors.cpp │ ├── blargg_errors.h │ ├── blargg_source.h │ ├── fex.cpp │ └── fex.h ├── filechooser.cpp ├── filechooser.moc.hpp ├── libjma │ ├── 7z.h │ ├── 7zlzma.cpp │ ├── aribitcd.h │ ├── ariconst.h │ ├── ariprice.h │ ├── btreecd.h │ ├── crc32.h │ ├── iiostrm.cpp │ ├── iiostrm.h │ ├── inbyte.cpp │ ├── inbyte.h │ ├── jcrc32.cpp │ ├── jma.cpp │ ├── jma.h │ ├── lencoder.h │ ├── litcoder.h │ ├── lzma.cpp │ ├── lzma.h │ ├── lzmadec.h │ ├── lzmadecode.cpp │ ├── portable.h │ ├── rcdefs.h │ ├── rngcoder.h │ ├── winout.cpp │ └── winout.h ├── micro-bunzip │ └── micro-bunzip.c ├── obj │ └── .gitignore ├── snesreader.cpp ├── snesreader.hpp ├── sync.sh └── uname.bat └── supergameboy ├── Makefile ├── cc.bat ├── clean.bat ├── common ├── array.h ├── defined_ptr.h ├── ringbuffer.h ├── scoped_ptr.h ├── transfer_ptr.h ├── uncopyable.h └── usec.h ├── interface ├── interface.cpp └── interface.hpp ├── libgambatte ├── SConstruct ├── include │ ├── debughandler.h │ ├── gambatte.h │ ├── gbint.h │ ├── inputgetter.h │ ├── loadres.h │ └── pakinfo.h └── src │ ├── bitmap_font.cpp │ ├── bitmap_font.h │ ├── counterdef.h │ ├── cpu.cpp │ ├── cpu.h │ ├── file │ ├── file.cpp │ ├── file.h │ ├── file_zip.cpp │ ├── stdfile.h │ └── unzip │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── unzip.c │ │ └── unzip.h │ ├── gambatte.cpp │ ├── initstate.cpp │ ├── initstate.h │ ├── insertion_sort.h │ ├── interrupter.cpp │ ├── interrupter.h │ ├── interruptrequester.cpp │ ├── interruptrequester.h │ ├── loadres.cpp │ ├── mem │ ├── cartridge.cpp │ ├── cartridge.h │ ├── memptrs.cpp │ ├── memptrs.h │ ├── pakinfo.cpp │ ├── pakinfo_internal.h │ ├── rtc.cpp │ └── rtc.h │ ├── memory.cpp │ ├── memory.h │ ├── minkeeper.h │ ├── osd_element.h │ ├── savestate.h │ ├── sound.cpp │ ├── sound.h │ ├── sound │ ├── channel1.cpp │ ├── channel1.h │ ├── channel2.cpp │ ├── channel2.h │ ├── channel3.cpp │ ├── channel3.h │ ├── channel4.cpp │ ├── channel4.h │ ├── duty_unit.cpp │ ├── duty_unit.h │ ├── envelope_unit.cpp │ ├── envelope_unit.h │ ├── length_counter.cpp │ ├── length_counter.h │ ├── master_disabler.h │ ├── psgdef.h │ ├── sound_unit.h │ └── static_output_tester.h │ ├── state_osd_elements.cpp │ ├── state_osd_elements.h │ ├── statesaver.cpp │ ├── statesaver.h │ ├── tima.cpp │ ├── tima.h │ ├── video.cpp │ ├── video.h │ └── video │ ├── lcddef.h │ ├── ly_counter.cpp │ ├── ly_counter.h │ ├── lyc_irq.cpp │ ├── lyc_irq.h │ ├── mstat_irq.h │ ├── next_m0_time.cpp │ ├── next_m0_time.h │ ├── ppu.cpp │ ├── ppu.h │ ├── sprite_mapper.cpp │ └── sprite_mapper.h ├── obj └── .gitignore ├── supergameboy.cpp ├── supergameboy.hpp ├── sync.sh └── uname.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bsnes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/Makefile -------------------------------------------------------------------------------- /bsnes/Snesida/ida_debmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/Snesida/ida_debmod.h -------------------------------------------------------------------------------- /bsnes/Snesida/ida_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/Snesida/ida_debug.cpp -------------------------------------------------------------------------------- /bsnes/Snesida/ida_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/Snesida/ida_plugin.cpp -------------------------------------------------------------------------------- /bsnes/Snesida/ida_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/Snesida/ida_plugin.h -------------------------------------------------------------------------------- /bsnes/Snesida/ida_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/Snesida/ida_registers.h -------------------------------------------------------------------------------- /bsnes/Snesida/snesida.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/Snesida/snesida.vcxproj -------------------------------------------------------------------------------- /bsnes/Snesida/snesida.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/Snesida/snesida.vcxproj.filters -------------------------------------------------------------------------------- /bsnes/Snesida/snesida.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/Snesida/snesida.vcxproj.user -------------------------------------------------------------------------------- /bsnes/cc.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make -j 2 2 | @pause 3 | -------------------------------------------------------------------------------- /bsnes/clean.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make clean 2 | -------------------------------------------------------------------------------- /bsnes/data/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/Info.plist -------------------------------------------------------------------------------- /bsnes/data/bsnes.Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsnes.Manifest -------------------------------------------------------------------------------- /bsnes/data/bsnes.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsnes.desktop -------------------------------------------------------------------------------- /bsnes/data/bsnes.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsnes.icns -------------------------------------------------------------------------------- /bsnes/data/bsnes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsnes.ico -------------------------------------------------------------------------------- /bsnes/data/bsnes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsnes.png -------------------------------------------------------------------------------- /bsnes/data/bsnes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsnes.svg -------------------------------------------------------------------------------- /bsnes/data/bsnes_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsnes_512.png -------------------------------------------------------------------------------- /bsnes/data/bsxdat/BSX0121-0.bin: -------------------------------------------------------------------------------- 1 | d Have fun with bsnes-plus' Satellaview support! -------------------------------------------------------------------------------- /bsnes/data/bsxdat/BSX0122-0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsxdat/BSX0122-0.bin -------------------------------------------------------------------------------- /bsnes/data/bsxdat/BSX0123-0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsxdat/BSX0123-0.bin -------------------------------------------------------------------------------- /bsnes/data/bsxdat/BSX0124-0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/bsxdat/BSX0124-0.bin -------------------------------------------------------------------------------- /bsnes/data/cheats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/cheats.xml -------------------------------------------------------------------------------- /bsnes/data/default.cpu.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/default.cpu.sym -------------------------------------------------------------------------------- /bsnes/data/default.dsp.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/default.dsp.sym -------------------------------------------------------------------------------- /bsnes/data/default.sa1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/default.sa1.sym -------------------------------------------------------------------------------- /bsnes/data/default.sgb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/default.sgb.sym -------------------------------------------------------------------------------- /bsnes/data/default.smp.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/default.smp.sym -------------------------------------------------------------------------------- /bsnes/data/default_sa1.cpu.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/default_sa1.cpu.sym -------------------------------------------------------------------------------- /bsnes/data/default_sfx.cpu.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/data/default_sfx.cpu.sym -------------------------------------------------------------------------------- /bsnes/gen-cpp/BsnesDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/gen-cpp/BsnesDebugger.cpp -------------------------------------------------------------------------------- /bsnes/gen-cpp/BsnesDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/gen-cpp/BsnesDebugger.h -------------------------------------------------------------------------------- /bsnes/gen-cpp/IdaClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/gen-cpp/IdaClient.cpp -------------------------------------------------------------------------------- /bsnes/gen-cpp/IdaClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/gen-cpp/IdaClient.h -------------------------------------------------------------------------------- /bsnes/gen-cpp/debug_proto_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/gen-cpp/debug_proto_types.cpp -------------------------------------------------------------------------------- /bsnes/gen-cpp/debug_proto_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/gen-cpp/debug_proto_types.h -------------------------------------------------------------------------------- /bsnes/launcher/bsnes.Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/launcher/bsnes.Manifest -------------------------------------------------------------------------------- /bsnes/launcher/bsnes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/launcher/bsnes.ico -------------------------------------------------------------------------------- /bsnes/launcher/cc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/launcher/cc.bat -------------------------------------------------------------------------------- /bsnes/launcher/cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/launcher/cc.sh -------------------------------------------------------------------------------- /bsnes/launcher/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/launcher/launcher.cpp -------------------------------------------------------------------------------- /bsnes/launcher/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/launcher/resource.rc -------------------------------------------------------------------------------- /bsnes/libco/amd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/amd64.c -------------------------------------------------------------------------------- /bsnes/libco/amd64_gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/amd64_gcc.c -------------------------------------------------------------------------------- /bsnes/libco/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/arm.c -------------------------------------------------------------------------------- /bsnes/libco/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/fiber.c -------------------------------------------------------------------------------- /bsnes/libco/libco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/libco.c -------------------------------------------------------------------------------- /bsnes/libco/libco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/libco.h -------------------------------------------------------------------------------- /bsnes/libco/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/ppc.c -------------------------------------------------------------------------------- /bsnes/libco/sjlj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/sjlj.c -------------------------------------------------------------------------------- /bsnes/libco/ucontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/ucontext.c -------------------------------------------------------------------------------- /bsnes/libco/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/x86.c -------------------------------------------------------------------------------- /bsnes/libco/x86_gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/libco/x86_gcc.c -------------------------------------------------------------------------------- /bsnes/obj/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /bsnes/obj/accuracy/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /bsnes/obj/compatibility/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /bsnes/obj/performance/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /bsnes/out/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /bsnes/ruby/audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio.hpp -------------------------------------------------------------------------------- /bsnes/ruby/audio/alsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio/alsa.cpp -------------------------------------------------------------------------------- /bsnes/ruby/audio/ao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio/ao.cpp -------------------------------------------------------------------------------- /bsnes/ruby/audio/directsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio/directsound.cpp -------------------------------------------------------------------------------- /bsnes/ruby/audio/openal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio/openal.cpp -------------------------------------------------------------------------------- /bsnes/ruby/audio/oss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio/oss.cpp -------------------------------------------------------------------------------- /bsnes/ruby/audio/pulseaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio/pulseaudio.cpp -------------------------------------------------------------------------------- /bsnes/ruby/audio/pulseaudiosimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio/pulseaudiosimple.cpp -------------------------------------------------------------------------------- /bsnes/ruby/audio/xaudio2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio/xaudio2.cpp -------------------------------------------------------------------------------- /bsnes/ruby/audio/xaudio2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/audio/xaudio2.hpp -------------------------------------------------------------------------------- /bsnes/ruby/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/input.hpp -------------------------------------------------------------------------------- /bsnes/ruby/input/directinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/input/directinput.cpp -------------------------------------------------------------------------------- /bsnes/ruby/input/macos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/input/macos.cpp -------------------------------------------------------------------------------- /bsnes/ruby/input/rawinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/input/rawinput.cpp -------------------------------------------------------------------------------- /bsnes/ruby/input/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/input/sdl.cpp -------------------------------------------------------------------------------- /bsnes/ruby/input/x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/input/x.cpp -------------------------------------------------------------------------------- /bsnes/ruby/input/xlibkeys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/input/xlibkeys.hpp -------------------------------------------------------------------------------- /bsnes/ruby/ruby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/ruby.cpp -------------------------------------------------------------------------------- /bsnes/ruby/ruby.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/ruby.hpp -------------------------------------------------------------------------------- /bsnes/ruby/ruby_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/ruby_audio.cpp -------------------------------------------------------------------------------- /bsnes/ruby/ruby_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/ruby_impl.cpp -------------------------------------------------------------------------------- /bsnes/ruby/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video.hpp -------------------------------------------------------------------------------- /bsnes/ruby/video/direct3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/direct3d.cpp -------------------------------------------------------------------------------- /bsnes/ruby/video/directdraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/directdraw.cpp -------------------------------------------------------------------------------- /bsnes/ruby/video/gdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/gdi.cpp -------------------------------------------------------------------------------- /bsnes/ruby/video/glx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/glx.cpp -------------------------------------------------------------------------------- /bsnes/ruby/video/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/opengl.hpp -------------------------------------------------------------------------------- /bsnes/ruby/video/qtopengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/qtopengl.cpp -------------------------------------------------------------------------------- /bsnes/ruby/video/qtraster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/qtraster.cpp -------------------------------------------------------------------------------- /bsnes/ruby/video/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/sdl.cpp -------------------------------------------------------------------------------- /bsnes/ruby/video/wgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/wgl.cpp -------------------------------------------------------------------------------- /bsnes/ruby/video/xv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ruby/video/xv.cpp -------------------------------------------------------------------------------- /bsnes/snes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/Makefile -------------------------------------------------------------------------------- /bsnes/snes/alt/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/cpu/cpu.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/cpu/cpu.hpp -------------------------------------------------------------------------------- /bsnes/snes/alt/cpu/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/cpu/dma.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/cpu/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/cpu/memory.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/cpu/mmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/cpu/mmio.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/cpu/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/cpu/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/cpu/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/cpu/timing.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/dsp/SPC_DSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/dsp/SPC_DSP.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/dsp/SPC_DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/dsp/SPC_DSP.h -------------------------------------------------------------------------------- /bsnes/snes/alt/dsp/blargg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/dsp/blargg_common.h -------------------------------------------------------------------------------- /bsnes/snes/alt/dsp/blargg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/dsp/blargg_config.h -------------------------------------------------------------------------------- /bsnes/snes/alt/dsp/blargg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/dsp/blargg_endian.h -------------------------------------------------------------------------------- /bsnes/snes/alt/dsp/blargg_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/dsp/blargg_source.h -------------------------------------------------------------------------------- /bsnes/snes/alt/dsp/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/dsp/dsp.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/dsp/dsp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/dsp/dsp.hpp -------------------------------------------------------------------------------- /bsnes/snes/alt/dsp/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/dsp/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/debugger/debugger.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/debugger/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/debugger/debugger.hpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/memory/memory.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/memory/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/memory/memory.hpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/mmio/mmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/mmio/mmio.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/mmio/mmio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/mmio/mmio.hpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/ppu.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/ppu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/ppu.hpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/render/addsub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/render/addsub.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/render/bg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/render/bg.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/render/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/render/cache.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/render/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/render/line.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/render/mode7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/render/mode7.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/render/oam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/render/oam.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/render/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/render/render.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/render/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/render/render.hpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/render/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/render/windows.cpp -------------------------------------------------------------------------------- /bsnes/snes/alt/ppu/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/alt/ppu/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/audio/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/audio/audio.cpp -------------------------------------------------------------------------------- /bsnes/snes/audio/audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/audio/audio.hpp -------------------------------------------------------------------------------- /bsnes/snes/cartridge/cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cartridge/cartridge.cpp -------------------------------------------------------------------------------- /bsnes/snes/cartridge/cartridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cartridge/cartridge.hpp -------------------------------------------------------------------------------- /bsnes/snes/cartridge/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cartridge/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/cartridge/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cartridge/xml.cpp -------------------------------------------------------------------------------- /bsnes/snes/cheat/cheat-inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cheat/cheat-inline.hpp -------------------------------------------------------------------------------- /bsnes/snes/cheat/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cheat/cheat.cpp -------------------------------------------------------------------------------- /bsnes/snes/cheat/cheat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cheat/cheat.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/bsx/bsx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/bsx/bsx.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/bsx/bsx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/bsx/bsx.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/bsx/bsx_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/bsx/bsx_base.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/bsx/bsx_cart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/bsx/bsx_cart.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/bsx/bsx_flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/bsx/bsx_flash.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/bsx/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/bsx/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/chip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/chip.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/cx4/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/cx4/bus.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/cx4/bus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/cx4/bus.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/cx4/cx4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/cx4/cx4.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/cx4/cx4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/cx4/cx4.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/cx4/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/cx4/data.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/cx4/instructions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/cx4/instructions.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/cx4/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/cx4/memory.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/cx4/registers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/cx4/registers.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/cx4/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/cx4/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/msu1/msu1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/msu1/msu1.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/msu1/msu1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/msu1/msu1.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/msu1/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/msu1/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/necdsp/disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/necdsp/disassembler.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/necdsp/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/necdsp/memory.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/necdsp/necdsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/necdsp/necdsp.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/necdsp/necdsp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/necdsp/necdsp.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/necdsp/registers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/necdsp/registers.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/necdsp/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/necdsp/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/obc1/obc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/obc1/obc1.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/obc1/obc1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/obc1/obc1.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/obc1/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/obc1/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/bus/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/bus/bus.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/bus/bus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/bus/bus.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/debugger/debugger.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/debugger/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/debugger/debugger.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/dma/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/dma/dma.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/dma/dma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/dma/dma.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/memory/memory.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/memory/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/memory/memory.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/mmio/mmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/mmio/mmio.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/mmio/mmio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/mmio/mmio.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/sa1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/sa1.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/sa1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/sa1.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sa1/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sa1/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sdd1/sdd1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sdd1/sdd1.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sdd1/sdd1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sdd1/sdd1.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sdd1/sdd1emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sdd1/sdd1emu.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sdd1/sdd1emu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sdd1/sdd1emu.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/sdd1/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/sdd1/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/serial/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/serial/serial.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/serial/serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/serial/serial.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/serial/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/serial/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/spc7110/decomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/spc7110/decomp.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/spc7110/decomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/spc7110/decomp.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/spc7110/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/spc7110/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/spc7110/spc7110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/spc7110/spc7110.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/spc7110/spc7110.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/spc7110/spc7110.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/srtc/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/srtc/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/srtc/srtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/srtc/srtc.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/srtc/srtc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/srtc/srtc.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/st0018/st0018.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/st0018/st0018.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/st0018/st0018.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/st0018/st0018.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/bus/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/bus/bus.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/bus/bus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/bus/bus.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/core/core.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/core/core.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/core/opcode_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/core/opcode_table.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/core/opcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/core/opcodes.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/core/registers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/core/registers.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/debugger/debugger.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/debugger/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/debugger/debugger.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/disasm/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/disasm/disasm.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/disasm/disasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/disasm/disasm.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/memory/memory.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/memory/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/memory/memory.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/mmio/mmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/mmio/mmio.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/mmio/mmio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/mmio/mmio.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/superfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/superfx.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/superfx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/superfx.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/timing/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/timing/timing.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/superfx/timing/timing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/superfx/timing/timing.hpp -------------------------------------------------------------------------------- /bsnes/snes/chip/supergameboy/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/supergameboy/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/supergameboy/supergameboy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/supergameboy/supergameboy.cpp -------------------------------------------------------------------------------- /bsnes/snes/chip/supergameboy/supergameboy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/chip/supergameboy/supergameboy.hpp -------------------------------------------------------------------------------- /bsnes/snes/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/config/config.cpp -------------------------------------------------------------------------------- /bsnes/snes/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/config/config.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/algorithms.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/core.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/core.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/memory.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/opcode_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/opcode_misc.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/opcode_pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/opcode_pc.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/opcode_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/opcode_read.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/opcode_rmw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/opcode_rmw.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/opcode_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/opcode_write.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/registers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/registers.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/core/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/core/table.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/cpu.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/cpu.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/debugger/analyst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/debugger/analyst.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/debugger/analyst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/debugger/analyst.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/debugger/debugger.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/debugger/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/debugger/debugger.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/dma/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/dma/dma.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/dma/dma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/dma/dma.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/memory/memory.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/memory/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/memory/memory.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/mmio/mmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/mmio/mmio.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/mmio/mmio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/mmio/mmio.hpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/timing/irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/timing/irq.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/timing/joypad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/timing/joypad.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/timing/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/timing/timing.cpp -------------------------------------------------------------------------------- /bsnes/snes/cpu/timing/timing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/cpu/timing/timing.hpp -------------------------------------------------------------------------------- /bsnes/snes/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/debugger/debugger.cpp -------------------------------------------------------------------------------- /bsnes/snes/debugger/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/debugger/debugger.hpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/brr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/brr.cpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/counter.cpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/debugger/debugger.cpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/debugger/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/debugger/debugger.hpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/dsp.cpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/dsp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/dsp.hpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/echo.cpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/envelope.cpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/gaussian.cpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/misc.cpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/dsp/voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/dsp/voice.cpp -------------------------------------------------------------------------------- /bsnes/snes/input/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/input/input.cpp -------------------------------------------------------------------------------- /bsnes/snes/input/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/input/input.hpp -------------------------------------------------------------------------------- /bsnes/snes/interface/interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/interface/interface.hpp -------------------------------------------------------------------------------- /bsnes/snes/libsnes/libsnes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/libsnes/libsnes.cpp -------------------------------------------------------------------------------- /bsnes/snes/libsnes/libsnes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/libsnes/libsnes.hpp -------------------------------------------------------------------------------- /bsnes/snes/memory/memory-inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/memory/memory-inline.hpp -------------------------------------------------------------------------------- /bsnes/snes/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/memory/memory.cpp -------------------------------------------------------------------------------- /bsnes/snes/memory/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/memory/memory.hpp -------------------------------------------------------------------------------- /bsnes/snes/memory/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/memory/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/background/background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/background/background.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/background/background.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/background/background.hpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/background/mode7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/background/mode7.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/counter/counter-inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/counter/counter-inline.hpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/counter/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/counter/counter.hpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/counter/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/counter/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/debugger/debugger.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/debugger/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/debugger/debugger.hpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/mmio/mmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/mmio/mmio.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/mmio/mmio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/mmio/mmio.hpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/ppu.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/ppu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/ppu.hpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/screen/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/screen/screen.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/screen/screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/screen/screen.hpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/sprite/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/sprite/list.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/sprite/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/sprite/sprite.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/sprite/sprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/sprite/sprite.hpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/window/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/window/window.cpp -------------------------------------------------------------------------------- /bsnes/snes/ppu/window/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/ppu/window/window.hpp -------------------------------------------------------------------------------- /bsnes/snes/profile-accuracy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/profile-accuracy.hpp -------------------------------------------------------------------------------- /bsnes/snes/profile-compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/profile-compatibility.hpp -------------------------------------------------------------------------------- /bsnes/snes/profile-performance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/profile-performance.hpp -------------------------------------------------------------------------------- /bsnes/snes/scheduler/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/scheduler/scheduler.cpp -------------------------------------------------------------------------------- /bsnes/snes/scheduler/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/scheduler/scheduler.hpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/algorithms.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/core.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/core.hpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/memory.hpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/opcode_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/opcode_misc.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/opcode_mov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/opcode_mov.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/opcode_pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/opcode_pc.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/opcode_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/opcode_read.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/opcode_rmw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/opcode_rmw.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/registers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/registers.hpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/core/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/core/table.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/debugger/debugger.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/debugger/debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/debugger/debugger.hpp -------------------------------------------------------------------------------- /bsnes/snes/smp/iplrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/iplrom.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/memory/memory.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/memory/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/memory/memory.hpp -------------------------------------------------------------------------------- /bsnes/snes/smp/mmio/mmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/mmio/mmio.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/mmio/mmio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/mmio/mmio.hpp -------------------------------------------------------------------------------- /bsnes/snes/smp/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/smp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/smp.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/smp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/smp.hpp -------------------------------------------------------------------------------- /bsnes/snes/smp/timing/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/timing/timing.cpp -------------------------------------------------------------------------------- /bsnes/snes/smp/timing/timing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/smp/timing/timing.hpp -------------------------------------------------------------------------------- /bsnes/snes/snes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/snes.hpp -------------------------------------------------------------------------------- /bsnes/snes/system/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/system/random.cpp -------------------------------------------------------------------------------- /bsnes/snes/system/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/system/serialization.cpp -------------------------------------------------------------------------------- /bsnes/snes/system/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/system/system.cpp -------------------------------------------------------------------------------- /bsnes/snes/system/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/system/system.hpp -------------------------------------------------------------------------------- /bsnes/snes/video/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/video/video.cpp -------------------------------------------------------------------------------- /bsnes/snes/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/snes/video/video.hpp -------------------------------------------------------------------------------- /bsnes/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/sync.sh -------------------------------------------------------------------------------- /bsnes/thrift/debug_proto.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/debug_proto.thrift -------------------------------------------------------------------------------- /bsnes/thrift/libevent/bin/event_rpcgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/bin/event_rpcgen.py -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/evdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/evdns.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event2/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event2/buffer.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event2/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event2/dns.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event2/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event2/event.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event2/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event2/http.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event2/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event2/listener.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event2/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event2/rpc.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event2/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event2/tag.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event2/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event2/thread.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/event2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/event2/util.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/evhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/evhttp.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/evrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/evrpc.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/include/evutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/include/evutil.h -------------------------------------------------------------------------------- /bsnes/thrift/libevent/lib/event_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/lib/event_32.lib -------------------------------------------------------------------------------- /bsnes/thrift/libevent/lib/event_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/lib/event_64.lib -------------------------------------------------------------------------------- /bsnes/thrift/libevent/lib/event_core_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/lib/event_core_32.lib -------------------------------------------------------------------------------- /bsnes/thrift/libevent/lib/event_core_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/lib/event_core_64.lib -------------------------------------------------------------------------------- /bsnes/thrift/libevent/lib/event_extra_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/lib/event_extra_32.lib -------------------------------------------------------------------------------- /bsnes/thrift/libevent/lib/event_extra_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/lib/event_extra_64.lib -------------------------------------------------------------------------------- /bsnes/thrift/libevent/lib/pkgconfig/libevent.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/libevent/lib/pkgconfig/libevent.pc -------------------------------------------------------------------------------- /bsnes/thrift/thrift/TApplicationException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/TApplicationException.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/TBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/TBase.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/TConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/TConfiguration.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/TDispatchProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/TDispatchProcessor.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/TLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/TLogging.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/TOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/TOutput.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/TProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/TProcessor.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/TToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/TToString.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/Thrift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/Thrift.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/async/TAsyncChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/async/TAsyncChannel.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/async/TAsyncProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/async/TAsyncProcessor.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/async/TEvhttpClientChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/async/TEvhttpClientChannel.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/async/TEvhttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/async/TEvhttpServer.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/concurrency/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/concurrency/Exception.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/concurrency/FunctionRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/concurrency/FunctionRunner.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/concurrency/Monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/concurrency/Monitor.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/concurrency/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/concurrency/Mutex.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/concurrency/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/concurrency/Thread.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/concurrency/ThreadFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/concurrency/ThreadFactory.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/concurrency/ThreadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/concurrency/ThreadManager.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/concurrency/TimerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/concurrency/TimerManager.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/processor/PeekProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/processor/PeekProcessor.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/processor/StatsProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/processor/StatsProcessor.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TBase64Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TBase64Utils.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TBinaryProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TBinaryProtocol.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TBinaryProtocol.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TBinaryProtocol.tcc -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TCompactProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TCompactProtocol.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TDebugProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TDebugProtocol.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TEnum.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/THeaderProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/THeaderProtocol.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TJSONProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TJSONProtocol.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TList.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TMap.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TProtocol.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TProtocolTap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TProtocolTap.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TProtocolTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TProtocolTypes.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TSet.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/protocol/TVirtualProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/protocol/TVirtualProtocol.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/qt/CMakeLists.txt -------------------------------------------------------------------------------- /bsnes/thrift/thrift/qt/TQIODeviceTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/qt/TQIODeviceTransport.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/qt/TQTcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/qt/TQTcpServer.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/server/TConnectedClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/server/TConnectedClient.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/server/TNonblockingServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/server/TNonblockingServer.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/server/TServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/server/TServer.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/server/TServerFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/server/TServerFramework.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/server/TSimpleServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/server/TSimpleServer.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/server/TThreadPoolServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/server/TThreadPoolServer.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/server/TThreadedServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/server/TThreadedServer.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/thrift-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/thrift-config.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/thrift_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/thrift_export.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/PlatformSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/PlatformSocket.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/SocketCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/SocketCommon.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TFDTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TFDTransport.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TFileTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TFileTransport.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/THeaderTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/THeaderTransport.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/THttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/THttpClient.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/THttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/THttpServer.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/THttpTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/THttpTransport.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TPipe.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TPipeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TPipeServer.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TSSLServerSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TSSLServerSocket.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TSSLSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TSSLSocket.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TServerSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TServerSocket.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TServerTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TServerTransport.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TSocket.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TSocketPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TSocketPool.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TSocketUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TSocketUtils.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TTransport.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TTransportUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TTransportUtils.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/transport/TZlibTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/transport/TZlibTransport.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/windows/GetTimeOfDay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/windows/GetTimeOfDay.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/windows/Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/windows/Operators.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/windows/SocketPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/windows/SocketPair.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/windows/Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/windows/Sync.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/windows/TWinsockSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/windows/TWinsockSingleton.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/windows/WinFcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/windows/WinFcntl.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift/windows/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift/windows/config.h -------------------------------------------------------------------------------- /bsnes/thrift/thrift_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift_32.lib -------------------------------------------------------------------------------- /bsnes/thrift/thrift_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thrift_64.lib -------------------------------------------------------------------------------- /bsnes/thrift/thriftd_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thriftd_32.lib -------------------------------------------------------------------------------- /bsnes/thrift/thriftd_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thriftd_64.lib -------------------------------------------------------------------------------- /bsnes/thrift/thriftnb_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thriftnb_32.lib -------------------------------------------------------------------------------- /bsnes/thrift/thriftnb_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thriftnb_64.lib -------------------------------------------------------------------------------- /bsnes/thrift/thriftnbd_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thriftnbd_32.lib -------------------------------------------------------------------------------- /bsnes/thrift/thriftnbd_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/thrift/thriftnbd_64.lib -------------------------------------------------------------------------------- /bsnes/ui-qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/Makefile -------------------------------------------------------------------------------- /bsnes/ui-qt/application/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/application/application.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/application/application.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/application/application.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/application/arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/application/arguments.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/application/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/application/init.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/about.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/about.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/about.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/base.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/filebrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/filebrowser.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/filebrowser.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/filebrowser.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/htmlviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/htmlviewer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/htmlviewer.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/htmlviewer.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/loader.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/loader.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/loader.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/main.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/main.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/main.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/stateselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/stateselect.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/base/stateselect.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/base/stateselect.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/cartridge/cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/cartridge/cartridge.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/cartridge/cartridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/cartridge/cartridge.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/config.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/config.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/data/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/documentation.html -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/dbg-break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/dbg-break.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/dbg-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/dbg-run.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/dbg-step-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/dbg-step-out.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/dbg-step-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/dbg-step-over.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/dbg-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/dbg-step.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/folder-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/folder-new.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/go-up.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/item-check-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/item-check-off.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/item-check-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/item-check-on.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/item-radio-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/item-radio-off.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/item-radio-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/item-radio-on.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/mem-find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/mem-find.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/mem-next-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/mem-next-code.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/mem-next-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/mem-next-data.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/mem-prev-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/mem-prev-code.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/icons-16x16/mem-prev-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/icons-16x16/mem-prev-data.png -------------------------------------------------------------------------------- /bsnes/ui-qt/data/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/license.html -------------------------------------------------------------------------------- /bsnes/ui-qt/data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/data/logo.png -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/debugger.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/debugger.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/debugger.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/debuggerview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/debuggerview.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/debuggerview.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/debuggerview.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/disassembler/line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/disassembler/line.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/disassembler/processor/processor.cpp: -------------------------------------------------------------------------------- 1 | #include "processor.hpp" 2 | -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/base-renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/base-renderer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/base-renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/base-renderer.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/cgram-viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/cgram-viewer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/cgram-viewer.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/cgram-viewer.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/cgram-widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/cgram-widget.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/cgram-widget.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/cgram-widget.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/image-grid-widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/image-grid-widget.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/oam-data-model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/oam-data-model.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/oam-data-model.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/oam-data-model.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/oam-graphics-scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/oam-graphics-scene.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/oam-viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/oam-viewer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/oam-viewer.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/oam-viewer.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/tile-renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/tile-renderer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/tile-renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/tile-renderer.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/tile-viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/tile-viewer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/tile-viewer.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/tile-viewer.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/tilemap-renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/tilemap-renderer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/tilemap-renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/tilemap-renderer.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/tilemap-viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/tilemap-viewer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/ppu/tilemap-viewer.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/ppu/tilemap-viewer.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/registeredit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/registeredit.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/registeredit.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/registeredit.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/remote_debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/remote_debugger.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/tools/breakpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/tools/breakpoint.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/tools/breakpoint.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/tools/breakpoint.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/tools/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/tools/memory.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/tools/memory.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/tools/memory.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/tools/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/tools/properties.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/tools/properties.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/tools/properties.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/tools/qhexedit2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/tools/qhexedit2/license.txt -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/tracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/tracer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/debugger/tracer.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/debugger/tracer.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/input/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/input/controller.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/input/controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/input/controller.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/input/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/input/input.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/input/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/input/input.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/input/userinterface-general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/input/userinterface-general.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/input/userinterface-states.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/input/userinterface-states.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/input/userinterface-system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/input/userinterface-system.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/input/userinterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/input/userinterface.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/interface.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/interface.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/link/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/link/filter.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/link/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/link/filter.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/link/music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/link/music.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/link/music.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/link/music.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/link/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/link/reader.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/link/reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/link/reader.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/main.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/movie/movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/movie/movie.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/movie/movie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/movie/movie.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/platform/platform_osx.cpp: -------------------------------------------------------------------------------- 1 | void supressScreenSaver() { 2 | } 3 | 4 | -------------------------------------------------------------------------------- /bsnes/ui-qt/platform/platform_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/platform/platform_win.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/platform/platform_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/platform/platform_x.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/resource/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/resource/resource.qrc -------------------------------------------------------------------------------- /bsnes/ui-qt/resource/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/resource/resource.rc -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/advanced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/advanced.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/advanced.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/advanced.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/audio.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/audio.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/audio.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/bsx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/bsx.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/bsx.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/bsx.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/input.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/input.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/input.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/paths.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/paths.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/paths.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/profile.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/profile.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/profile.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/settings.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/settings.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/settings.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/video.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/settings/video.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/settings/video.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/state/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/state/state.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/state/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/state/state.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/cheateditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/cheateditor.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/cheateditor.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/cheateditor.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/cheatfinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/cheatfinder.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/cheatfinder.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/cheatfinder.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/effecttoggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/effecttoggle.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/effecttoggle.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/effecttoggle.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/manifestviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/manifestviewer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/manifestviewer.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/manifestviewer.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/soundviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/soundviewer.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/soundviewer.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/soundviewer.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/statemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/statemanager.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/statemanager.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/statemanager.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/tools.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/tools/tools.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/tools/tools.moc.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/ui-base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/ui-base.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/utility/system-state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/utility/system-state.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/utility/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/utility/utility.cpp -------------------------------------------------------------------------------- /bsnes/ui-qt/utility/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/utility/utility.hpp -------------------------------------------------------------------------------- /bsnes/ui-qt/utility/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/ui-qt/utility/window.cpp -------------------------------------------------------------------------------- /bsnes/uname.bat: -------------------------------------------------------------------------------- 1 | @echo: 2 | -------------------------------------------------------------------------------- /bsnes/vstudio/bsnes/bsnes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/vstudio/bsnes/bsnes.sln -------------------------------------------------------------------------------- /bsnes/vstudio/bsnes/bsnes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/vstudio/bsnes/bsnes.vcxproj -------------------------------------------------------------------------------- /bsnes/vstudio/bsnes/bsnes.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/vstudio/bsnes/bsnes.vcxproj.filters -------------------------------------------------------------------------------- /bsnes/vstudio/bsnes/bsnes.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/bsnes/vstudio/bsnes/bsnes.vcxproj.user -------------------------------------------------------------------------------- /common/nall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/Makefile -------------------------------------------------------------------------------- /common/nall/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/algorithm.hpp -------------------------------------------------------------------------------- /common/nall/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/any.hpp -------------------------------------------------------------------------------- /common/nall/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/array.hpp -------------------------------------------------------------------------------- /common/nall/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/base64.hpp -------------------------------------------------------------------------------- /common/nall/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/bit.hpp -------------------------------------------------------------------------------- /common/nall/bps/delta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/bps/delta.hpp -------------------------------------------------------------------------------- /common/nall/bps/linear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/bps/linear.hpp -------------------------------------------------------------------------------- /common/nall/bps/metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/bps/metadata.hpp -------------------------------------------------------------------------------- /common/nall/bps/patch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/bps/patch.hpp -------------------------------------------------------------------------------- /common/nall/concept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/concept.hpp -------------------------------------------------------------------------------- /common/nall/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/config.hpp -------------------------------------------------------------------------------- /common/nall/crc32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/crc32.hpp -------------------------------------------------------------------------------- /common/nall/detect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/detect.hpp -------------------------------------------------------------------------------- /common/nall/dictionary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/dictionary.hpp -------------------------------------------------------------------------------- /common/nall/directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/directory.hpp -------------------------------------------------------------------------------- /common/nall/dl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/dl.hpp -------------------------------------------------------------------------------- /common/nall/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/endian.hpp -------------------------------------------------------------------------------- /common/nall/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/file.hpp -------------------------------------------------------------------------------- /common/nall/filemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/filemap.hpp -------------------------------------------------------------------------------- /common/nall/foreach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/foreach.hpp -------------------------------------------------------------------------------- /common/nall/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/function.hpp -------------------------------------------------------------------------------- /common/nall/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/input.hpp -------------------------------------------------------------------------------- /common/nall/lzss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/lzss.hpp -------------------------------------------------------------------------------- /common/nall/moduloarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/moduloarray.hpp -------------------------------------------------------------------------------- /common/nall/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/platform.hpp -------------------------------------------------------------------------------- /common/nall/priorityqueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/priorityqueue.hpp -------------------------------------------------------------------------------- /common/nall/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/property.hpp -------------------------------------------------------------------------------- /common/nall/qt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/qt/Makefile -------------------------------------------------------------------------------- /common/nall/qt/check-action.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/qt/check-action.moc.hpp -------------------------------------------------------------------------------- /common/nall/qt/check-delegate.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/qt/check-delegate.moc.hpp -------------------------------------------------------------------------------- /common/nall/qt/combo-delegate.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/qt/combo-delegate.moc.hpp -------------------------------------------------------------------------------- /common/nall/qt/concept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/qt/concept.hpp -------------------------------------------------------------------------------- /common/nall/qt/file-dialog.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/qt/file-dialog.moc.hpp -------------------------------------------------------------------------------- /common/nall/qt/radio-action.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/qt/radio-action.moc.hpp -------------------------------------------------------------------------------- /common/nall/qt/window.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/qt/window.moc.hpp -------------------------------------------------------------------------------- /common/nall/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/random.hpp -------------------------------------------------------------------------------- /common/nall/serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/serial.hpp -------------------------------------------------------------------------------- /common/nall/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/serializer.hpp -------------------------------------------------------------------------------- /common/nall/sha256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/sha256.hpp -------------------------------------------------------------------------------- /common/nall/snes/cartridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/snes/cartridge.hpp -------------------------------------------------------------------------------- /common/nall/snes/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/snes/cpu.hpp -------------------------------------------------------------------------------- /common/nall/snes/sgb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/snes/sgb.hpp -------------------------------------------------------------------------------- /common/nall/snes/smp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/snes/smp.hpp -------------------------------------------------------------------------------- /common/nall/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/sort.hpp -------------------------------------------------------------------------------- /common/nall/static.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/static.hpp -------------------------------------------------------------------------------- /common/nall/stdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/stdint.hpp -------------------------------------------------------------------------------- /common/nall/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string.hpp -------------------------------------------------------------------------------- /common/nall/string/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/base.hpp -------------------------------------------------------------------------------- /common/nall/string/bsv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/bsv.hpp -------------------------------------------------------------------------------- /common/nall/string/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/cast.hpp -------------------------------------------------------------------------------- /common/nall/string/compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/compare.hpp -------------------------------------------------------------------------------- /common/nall/string/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/convert.hpp -------------------------------------------------------------------------------- /common/nall/string/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/core.hpp -------------------------------------------------------------------------------- /common/nall/string/filename.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/filename.hpp -------------------------------------------------------------------------------- /common/nall/string/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/math.hpp -------------------------------------------------------------------------------- /common/nall/string/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/platform.hpp -------------------------------------------------------------------------------- /common/nall/string/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/replace.hpp -------------------------------------------------------------------------------- /common/nall/string/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/split.hpp -------------------------------------------------------------------------------- /common/nall/string/strl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/strl.hpp -------------------------------------------------------------------------------- /common/nall/string/strpos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/strpos.hpp -------------------------------------------------------------------------------- /common/nall/string/trim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/trim.hpp -------------------------------------------------------------------------------- /common/nall/string/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/utility.hpp -------------------------------------------------------------------------------- /common/nall/string/variadic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/variadic.hpp -------------------------------------------------------------------------------- /common/nall/string/wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/wrapper.hpp -------------------------------------------------------------------------------- /common/nall/string/xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/string/xml.hpp -------------------------------------------------------------------------------- /common/nall/ups.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/ups.hpp -------------------------------------------------------------------------------- /common/nall/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/utf8.hpp -------------------------------------------------------------------------------- /common/nall/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/utility.hpp -------------------------------------------------------------------------------- /common/nall/varint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/varint.hpp -------------------------------------------------------------------------------- /common/nall/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/nall/vector.hpp -------------------------------------------------------------------------------- /common/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/adler32.c -------------------------------------------------------------------------------- /common/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/crc32.c -------------------------------------------------------------------------------- /common/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/crc32.h -------------------------------------------------------------------------------- /common/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/inffast.c -------------------------------------------------------------------------------- /common/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/inffast.h -------------------------------------------------------------------------------- /common/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/inffixed.h -------------------------------------------------------------------------------- /common/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/inflate.c -------------------------------------------------------------------------------- /common/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/inflate.h -------------------------------------------------------------------------------- /common/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/inftrees.c -------------------------------------------------------------------------------- /common/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/inftrees.h -------------------------------------------------------------------------------- /common/zlib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/readme.txt -------------------------------------------------------------------------------- /common/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/zconf.h -------------------------------------------------------------------------------- /common/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/zlib.h -------------------------------------------------------------------------------- /common/zlib/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/zlib.txt -------------------------------------------------------------------------------- /common/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/zutil.c -------------------------------------------------------------------------------- /common/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/common/zlib/zutil.h -------------------------------------------------------------------------------- /snesfilter/2xsai/2xsai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/2xsai/2xsai.cpp -------------------------------------------------------------------------------- /snesfilter/2xsai/2xsai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/2xsai/2xsai.hpp -------------------------------------------------------------------------------- /snesfilter/2xsai/implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/2xsai/implementation.cpp -------------------------------------------------------------------------------- /snesfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/Makefile -------------------------------------------------------------------------------- /snesfilter/cc.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make 2 | @pause -------------------------------------------------------------------------------- /snesfilter/clean.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make clean 2 | -------------------------------------------------------------------------------- /snesfilter/direct/direct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/direct/direct.cpp -------------------------------------------------------------------------------- /snesfilter/direct/direct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/direct/direct.hpp -------------------------------------------------------------------------------- /snesfilter/hq2x/hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/hq2x/hq2x.cpp -------------------------------------------------------------------------------- /snesfilter/hq2x/hq2x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/hq2x/hq2x.hpp -------------------------------------------------------------------------------- /snesfilter/lq2x/lq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/lq2x/lq2x.cpp -------------------------------------------------------------------------------- /snesfilter/lq2x/lq2x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/lq2x/lq2x.hpp -------------------------------------------------------------------------------- /snesfilter/ntsc/ntsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/ntsc/ntsc.cpp -------------------------------------------------------------------------------- /snesfilter/ntsc/ntsc.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/ntsc/ntsc.moc.hpp -------------------------------------------------------------------------------- /snesfilter/ntsc/snes_ntsc/snes_ntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/ntsc/snes_ntsc/snes_ntsc.c -------------------------------------------------------------------------------- /snesfilter/ntsc/snes_ntsc/snes_ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/ntsc/snes_ntsc/snes_ntsc.h -------------------------------------------------------------------------------- /snesfilter/ntsc/snes_ntsc/snes_ntsc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/ntsc/snes_ntsc/snes_ntsc_config.h -------------------------------------------------------------------------------- /snesfilter/ntsc/snes_ntsc/snes_ntsc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/ntsc/snes_ntsc/snes_ntsc_impl.h -------------------------------------------------------------------------------- /snesfilter/obj/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /snesfilter/pixellate2x/pixellate2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/pixellate2x/pixellate2x.cpp -------------------------------------------------------------------------------- /snesfilter/pixellate2x/pixellate2x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/pixellate2x/pixellate2x.hpp -------------------------------------------------------------------------------- /snesfilter/scale2x/scale2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/scale2x/scale2x.cpp -------------------------------------------------------------------------------- /snesfilter/scale2x/scale2x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/scale2x/scale2x.hpp -------------------------------------------------------------------------------- /snesfilter/snesfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/snesfilter.cpp -------------------------------------------------------------------------------- /snesfilter/snesfilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/snesfilter.hpp -------------------------------------------------------------------------------- /snesfilter/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesfilter/sync.sh -------------------------------------------------------------------------------- /snesfilter/uname.bat: -------------------------------------------------------------------------------- 1 | @echo: 2 | -------------------------------------------------------------------------------- /snesmusic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesmusic/Makefile -------------------------------------------------------------------------------- /snesmusic/bitmap_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesmusic/bitmap_font.cpp -------------------------------------------------------------------------------- /snesmusic/bitmap_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesmusic/bitmap_font.h -------------------------------------------------------------------------------- /snesmusic/cc.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make 2 | @pause 3 | -------------------------------------------------------------------------------- /snesmusic/clean.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make clean 2 | -------------------------------------------------------------------------------- /snesmusic/obj/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /snesmusic/snesmusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesmusic/snesmusic.cpp -------------------------------------------------------------------------------- /snesmusic/snesmusic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesmusic/snesmusic.hpp -------------------------------------------------------------------------------- /snesmusic/uname.bat: -------------------------------------------------------------------------------- 1 | @echo: 2 | -------------------------------------------------------------------------------- /snesreader/7z_C/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7z.h -------------------------------------------------------------------------------- /snesreader/7z_C/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zAlloc.c -------------------------------------------------------------------------------- /snesreader/7z_C/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zAlloc.h -------------------------------------------------------------------------------- /snesreader/7z_C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zBuf.c -------------------------------------------------------------------------------- /snesreader/7z_C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zBuf.h -------------------------------------------------------------------------------- /snesreader/7z_C/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zC.txt -------------------------------------------------------------------------------- /snesreader/7z_C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zCrc.c -------------------------------------------------------------------------------- /snesreader/7z_C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zCrc.h -------------------------------------------------------------------------------- /snesreader/7z_C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zCrcOpt.c -------------------------------------------------------------------------------- /snesreader/7z_C/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zDec.c -------------------------------------------------------------------------------- /snesreader/7z_C/7zIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zIn.c -------------------------------------------------------------------------------- /snesreader/7z_C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/7zStream.c -------------------------------------------------------------------------------- /snesreader/7z_C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Bcj2.c -------------------------------------------------------------------------------- /snesreader/7z_C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Bcj2.h -------------------------------------------------------------------------------- /snesreader/7z_C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Bra.c -------------------------------------------------------------------------------- /snesreader/7z_C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Bra.h -------------------------------------------------------------------------------- /snesreader/7z_C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Bra86.c -------------------------------------------------------------------------------- /snesreader/7z_C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/CpuArch.c -------------------------------------------------------------------------------- /snesreader/7z_C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/CpuArch.h -------------------------------------------------------------------------------- /snesreader/7z_C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Lzma2Dec.c -------------------------------------------------------------------------------- /snesreader/7z_C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Lzma2Dec.h -------------------------------------------------------------------------------- /snesreader/7z_C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/LzmaDec.c -------------------------------------------------------------------------------- /snesreader/7z_C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/LzmaDec.h -------------------------------------------------------------------------------- /snesreader/7z_C/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Ppmd.h -------------------------------------------------------------------------------- /snesreader/7z_C/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Ppmd7.c -------------------------------------------------------------------------------- /snesreader/7z_C/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Ppmd7.h -------------------------------------------------------------------------------- /snesreader/7z_C/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Ppmd7Dec.c -------------------------------------------------------------------------------- /snesreader/7z_C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/Types.h -------------------------------------------------------------------------------- /snesreader/7z_C/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/lzma.txt -------------------------------------------------------------------------------- /snesreader/7z_C/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/7z_C/readme.txt -------------------------------------------------------------------------------- /snesreader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/Makefile -------------------------------------------------------------------------------- /snesreader/cc.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make 2 | @pause -------------------------------------------------------------------------------- /snesreader/clean.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make clean 2 | -------------------------------------------------------------------------------- /snesreader/fex/Binary_Extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Binary_Extractor.cpp -------------------------------------------------------------------------------- /snesreader/fex/Binary_Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Binary_Extractor.h -------------------------------------------------------------------------------- /snesreader/fex/Data_Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Data_Reader.cpp -------------------------------------------------------------------------------- /snesreader/fex/Data_Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Data_Reader.h -------------------------------------------------------------------------------- /snesreader/fex/File_Extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/File_Extractor.cpp -------------------------------------------------------------------------------- /snesreader/fex/File_Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/File_Extractor.h -------------------------------------------------------------------------------- /snesreader/fex/Gzip_Extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Gzip_Extractor.cpp -------------------------------------------------------------------------------- /snesreader/fex/Gzip_Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Gzip_Extractor.h -------------------------------------------------------------------------------- /snesreader/fex/Gzip_Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Gzip_Reader.cpp -------------------------------------------------------------------------------- /snesreader/fex/Gzip_Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Gzip_Reader.h -------------------------------------------------------------------------------- /snesreader/fex/Rar_Extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Rar_Extractor.cpp -------------------------------------------------------------------------------- /snesreader/fex/Rar_Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Rar_Extractor.h -------------------------------------------------------------------------------- /snesreader/fex/Zip7_Extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Zip7_Extractor.cpp -------------------------------------------------------------------------------- /snesreader/fex/Zip7_Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Zip7_Extractor.h -------------------------------------------------------------------------------- /snesreader/fex/Zip_Extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Zip_Extractor.cpp -------------------------------------------------------------------------------- /snesreader/fex/Zip_Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Zip_Extractor.h -------------------------------------------------------------------------------- /snesreader/fex/Zlib_Inflater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Zlib_Inflater.cpp -------------------------------------------------------------------------------- /snesreader/fex/Zlib_Inflater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/Zlib_Inflater.h -------------------------------------------------------------------------------- /snesreader/fex/blargg_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/blargg_common.cpp -------------------------------------------------------------------------------- /snesreader/fex/blargg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/blargg_common.h -------------------------------------------------------------------------------- /snesreader/fex/blargg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/blargg_config.h -------------------------------------------------------------------------------- /snesreader/fex/blargg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/blargg_endian.h -------------------------------------------------------------------------------- /snesreader/fex/blargg_errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/blargg_errors.cpp -------------------------------------------------------------------------------- /snesreader/fex/blargg_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/blargg_errors.h -------------------------------------------------------------------------------- /snesreader/fex/blargg_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/blargg_source.h -------------------------------------------------------------------------------- /snesreader/fex/fex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/fex.cpp -------------------------------------------------------------------------------- /snesreader/fex/fex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/fex/fex.h -------------------------------------------------------------------------------- /snesreader/filechooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/filechooser.cpp -------------------------------------------------------------------------------- /snesreader/filechooser.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/filechooser.moc.hpp -------------------------------------------------------------------------------- /snesreader/libjma/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/7z.h -------------------------------------------------------------------------------- /snesreader/libjma/7zlzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/7zlzma.cpp -------------------------------------------------------------------------------- /snesreader/libjma/aribitcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/aribitcd.h -------------------------------------------------------------------------------- /snesreader/libjma/ariconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/ariconst.h -------------------------------------------------------------------------------- /snesreader/libjma/ariprice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/ariprice.h -------------------------------------------------------------------------------- /snesreader/libjma/btreecd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/btreecd.h -------------------------------------------------------------------------------- /snesreader/libjma/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/crc32.h -------------------------------------------------------------------------------- /snesreader/libjma/iiostrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/iiostrm.cpp -------------------------------------------------------------------------------- /snesreader/libjma/iiostrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/iiostrm.h -------------------------------------------------------------------------------- /snesreader/libjma/inbyte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/inbyte.cpp -------------------------------------------------------------------------------- /snesreader/libjma/inbyte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/inbyte.h -------------------------------------------------------------------------------- /snesreader/libjma/jcrc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/jcrc32.cpp -------------------------------------------------------------------------------- /snesreader/libjma/jma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/jma.cpp -------------------------------------------------------------------------------- /snesreader/libjma/jma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/jma.h -------------------------------------------------------------------------------- /snesreader/libjma/lencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/lencoder.h -------------------------------------------------------------------------------- /snesreader/libjma/litcoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/litcoder.h -------------------------------------------------------------------------------- /snesreader/libjma/lzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/lzma.cpp -------------------------------------------------------------------------------- /snesreader/libjma/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/lzma.h -------------------------------------------------------------------------------- /snesreader/libjma/lzmadec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/lzmadec.h -------------------------------------------------------------------------------- /snesreader/libjma/lzmadecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/lzmadecode.cpp -------------------------------------------------------------------------------- /snesreader/libjma/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/portable.h -------------------------------------------------------------------------------- /snesreader/libjma/rcdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/rcdefs.h -------------------------------------------------------------------------------- /snesreader/libjma/rngcoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/rngcoder.h -------------------------------------------------------------------------------- /snesreader/libjma/winout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/winout.cpp -------------------------------------------------------------------------------- /snesreader/libjma/winout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/libjma/winout.h -------------------------------------------------------------------------------- /snesreader/micro-bunzip/micro-bunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/micro-bunzip/micro-bunzip.c -------------------------------------------------------------------------------- /snesreader/obj/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /snesreader/snesreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/snesreader.cpp -------------------------------------------------------------------------------- /snesreader/snesreader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/snesreader.hpp -------------------------------------------------------------------------------- /snesreader/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/snesreader/sync.sh -------------------------------------------------------------------------------- /snesreader/uname.bat: -------------------------------------------------------------------------------- 1 | @echo: 2 | -------------------------------------------------------------------------------- /supergameboy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/Makefile -------------------------------------------------------------------------------- /supergameboy/cc.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make 2 | @pause 3 | -------------------------------------------------------------------------------- /supergameboy/clean.bat: -------------------------------------------------------------------------------- 1 | @mingw32-make clean 2 | -------------------------------------------------------------------------------- /supergameboy/common/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/common/array.h -------------------------------------------------------------------------------- /supergameboy/common/defined_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/common/defined_ptr.h -------------------------------------------------------------------------------- /supergameboy/common/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/common/ringbuffer.h -------------------------------------------------------------------------------- /supergameboy/common/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/common/scoped_ptr.h -------------------------------------------------------------------------------- /supergameboy/common/transfer_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/common/transfer_ptr.h -------------------------------------------------------------------------------- /supergameboy/common/uncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/common/uncopyable.h -------------------------------------------------------------------------------- /supergameboy/common/usec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/common/usec.h -------------------------------------------------------------------------------- /supergameboy/interface/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/interface/interface.cpp -------------------------------------------------------------------------------- /supergameboy/interface/interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/interface/interface.hpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/SConstruct -------------------------------------------------------------------------------- /supergameboy/libgambatte/include/gambatte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/include/gambatte.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/include/gbint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/include/gbint.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/include/loadres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/include/loadres.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/include/pakinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/include/pakinfo.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/bitmap_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/bitmap_font.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/bitmap_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/bitmap_font.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/counterdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/counterdef.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/cpu.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/cpu.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/file/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/file/file.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/file/file.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/file/stdfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/file/stdfile.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/gambatte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/gambatte.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/initstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/initstate.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/initstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/initstate.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/insertion_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/insertion_sort.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/interrupter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/interrupter.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/interrupter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/interrupter.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/loadres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/loadres.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/mem/cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/mem/cartridge.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/mem/memptrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/mem/memptrs.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/mem/memptrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/mem/memptrs.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/mem/pakinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/mem/pakinfo.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/mem/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/mem/rtc.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/mem/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/mem/rtc.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/memory.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/memory.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/minkeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/minkeeper.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/osd_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/osd_element.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/savestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/savestate.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/sound.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/sound.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/sound/channel1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/sound/channel1.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/sound/channel2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/sound/channel2.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/sound/channel3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/sound/channel3.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/sound/channel4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/sound/channel4.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/sound/psgdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/sound/psgdef.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/statesaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/statesaver.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/statesaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/statesaver.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/tima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/tima.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/tima.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/tima.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/video.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/video.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/video/lcddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/video/lcddef.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/video/lyc_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/video/lyc_irq.h -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/video/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/video/ppu.cpp -------------------------------------------------------------------------------- /supergameboy/libgambatte/src/video/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/libgambatte/src/video/ppu.h -------------------------------------------------------------------------------- /supergameboy/obj/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /supergameboy/supergameboy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/supergameboy.cpp -------------------------------------------------------------------------------- /supergameboy/supergameboy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/supergameboy.hpp -------------------------------------------------------------------------------- /supergameboy/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lab313ru/snesida/HEAD/supergameboy/sync.sh -------------------------------------------------------------------------------- /supergameboy/uname.bat: -------------------------------------------------------------------------------- 1 | @echo: 2 | --------------------------------------------------------------------------------