├── .clang-format ├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── NesCarts (2017-08-21).json ├── cmake └── CompilerWarnings.cmake ├── readme.md └── src ├── Emulation ├── CHIP-8 │ ├── chip8.cpp │ ├── chip8.h │ ├── core.cpp │ ├── core.h │ ├── disassembler.cpp │ └── disassembler.h ├── GB │ ├── APU.h │ ├── Gameboy.cpp │ ├── Gameboy.h │ ├── GameboyCore.cpp │ ├── GameboyCore.h │ ├── LR35902.cpp │ ├── LR35902.h │ ├── Mappers │ │ ├── GbsMBC.h │ │ ├── MBC.h │ │ ├── MBC1.h │ │ ├── MBC2.h │ │ ├── MBC3.h │ │ ├── MBC5.h │ │ └── NoMBC.h │ ├── PPU.cpp │ ├── PPU.h │ └── Windows │ │ └── ppuWindow.h ├── ICore.h └── NES │ ├── Bus.cpp │ ├── Bus.h │ ├── Cartridge.cpp │ ├── Cartridge.h │ ├── Controller.h │ ├── Mappers │ ├── Mapper.h │ ├── Mapper000.cpp │ ├── Mapper000.h │ ├── Mapper001.cpp │ ├── Mapper001.h │ ├── Mapper002.cpp │ ├── Mapper002.h │ ├── Mapper003.cpp │ ├── Mapper003.h │ ├── Mapper004.cpp │ ├── Mapper004.h │ ├── Mapper007.cpp │ ├── Mapper007.h │ ├── Mapper011.cpp │ ├── Mapper011.h │ ├── Mapper065.cpp │ ├── Mapper065.h │ ├── Mapper071.cpp │ ├── Mapper071.h │ ├── Mapper079.cpp │ ├── Mapper079.h │ ├── Mapper232.cpp │ ├── Mapper232.h │ ├── Mappers.h │ ├── NsfMapper.cpp │ ├── NsfMapper.h │ ├── VRC6Mapper.cpp │ └── VRC6Mapper.h │ ├── NesCore.cpp │ ├── NesCore.h │ ├── RP2A03.cpp │ ├── RP2A03.h │ ├── StandardController.cpp │ ├── StandardController.h │ ├── TasController.cpp │ ├── TasController.h │ ├── Windows │ ├── apu_window.cpp │ ├── apu_window.h │ ├── cpu_state.cpp │ ├── cpu_state.h │ ├── disassembler.cpp │ ├── disassembler.h │ ├── pattern_tables.cpp │ └── pattern_tables.h │ ├── mos6502.cpp │ ├── mos6502.h │ ├── ppu2C02.cpp │ └── ppu2C02.h ├── Input.cpp ├── Input.h ├── MemoryMapped.cpp ├── MemoryMapped.h ├── RenderImage.h ├── audio.cpp ├── audio.h ├── fs.h ├── hexHelper.h ├── imguiWindows ├── imgui_memory_editor.cpp ├── imgui_memory_editor.h ├── imgui_tas_editor.cpp └── imgui_tas_editor.h ├── json.cpp ├── json.h ├── logger.cpp ├── logger.h ├── main.cpp ├── math.h ├── md5.cpp ├── md5.h ├── nativefiledialog ├── LICENSE ├── nfd.cpp ├── nfd.h └── nfd_cocoa.m ├── saver.cpp ├── saver.h ├── settings.cpp ├── settings.h ├── sha1.cpp ├── sha1.h ├── tas.cpp └── tas.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/LICENSE -------------------------------------------------------------------------------- /NesCarts (2017-08-21).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/NesCarts (2017-08-21).json -------------------------------------------------------------------------------- /cmake/CompilerWarnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/cmake/CompilerWarnings.cmake -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/readme.md -------------------------------------------------------------------------------- /src/Emulation/CHIP-8/chip8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/CHIP-8/chip8.cpp -------------------------------------------------------------------------------- /src/Emulation/CHIP-8/chip8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/CHIP-8/chip8.h -------------------------------------------------------------------------------- /src/Emulation/CHIP-8/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/CHIP-8/core.cpp -------------------------------------------------------------------------------- /src/Emulation/CHIP-8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/CHIP-8/core.h -------------------------------------------------------------------------------- /src/Emulation/CHIP-8/disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/CHIP-8/disassembler.cpp -------------------------------------------------------------------------------- /src/Emulation/CHIP-8/disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/CHIP-8/disassembler.h -------------------------------------------------------------------------------- /src/Emulation/GB/APU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/APU.h -------------------------------------------------------------------------------- /src/Emulation/GB/Gameboy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Gameboy.cpp -------------------------------------------------------------------------------- /src/Emulation/GB/Gameboy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Gameboy.h -------------------------------------------------------------------------------- /src/Emulation/GB/GameboyCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/GameboyCore.cpp -------------------------------------------------------------------------------- /src/Emulation/GB/GameboyCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/GameboyCore.h -------------------------------------------------------------------------------- /src/Emulation/GB/LR35902.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/LR35902.cpp -------------------------------------------------------------------------------- /src/Emulation/GB/LR35902.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/LR35902.h -------------------------------------------------------------------------------- /src/Emulation/GB/Mappers/GbsMBC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Mappers/GbsMBC.h -------------------------------------------------------------------------------- /src/Emulation/GB/Mappers/MBC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Mappers/MBC.h -------------------------------------------------------------------------------- /src/Emulation/GB/Mappers/MBC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Mappers/MBC1.h -------------------------------------------------------------------------------- /src/Emulation/GB/Mappers/MBC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Mappers/MBC2.h -------------------------------------------------------------------------------- /src/Emulation/GB/Mappers/MBC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Mappers/MBC3.h -------------------------------------------------------------------------------- /src/Emulation/GB/Mappers/MBC5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Mappers/MBC5.h -------------------------------------------------------------------------------- /src/Emulation/GB/Mappers/NoMBC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Mappers/NoMBC.h -------------------------------------------------------------------------------- /src/Emulation/GB/PPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/PPU.cpp -------------------------------------------------------------------------------- /src/Emulation/GB/PPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/PPU.h -------------------------------------------------------------------------------- /src/Emulation/GB/Windows/ppuWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/GB/Windows/ppuWindow.h -------------------------------------------------------------------------------- /src/Emulation/ICore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/ICore.h -------------------------------------------------------------------------------- /src/Emulation/NES/Bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Bus.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Bus.h -------------------------------------------------------------------------------- /src/Emulation/NES/Cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Cartridge.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Cartridge.h -------------------------------------------------------------------------------- /src/Emulation/NES/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Controller.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper000.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper000.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper001.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper001.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper002.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper002.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper003.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper003.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper003.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper004.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper004.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper007.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper007.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper007.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper007.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper011.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper011.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper065.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper065.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper065.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper065.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper071.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper071.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper071.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper071.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper079.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper079.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper079.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper079.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper232.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper232.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mapper232.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mapper232.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/Mappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/Mappers.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/NsfMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/NsfMapper.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/NsfMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/NsfMapper.h -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/VRC6Mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/VRC6Mapper.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Mappers/VRC6Mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Mappers/VRC6Mapper.h -------------------------------------------------------------------------------- /src/Emulation/NES/NesCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/NesCore.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/NesCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/NesCore.h -------------------------------------------------------------------------------- /src/Emulation/NES/RP2A03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/RP2A03.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/RP2A03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/RP2A03.h -------------------------------------------------------------------------------- /src/Emulation/NES/StandardController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/StandardController.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/StandardController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/StandardController.h -------------------------------------------------------------------------------- /src/Emulation/NES/TasController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/TasController.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/TasController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/TasController.h -------------------------------------------------------------------------------- /src/Emulation/NES/Windows/apu_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Windows/apu_window.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Windows/apu_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Windows/apu_window.h -------------------------------------------------------------------------------- /src/Emulation/NES/Windows/cpu_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Windows/cpu_state.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Windows/cpu_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Windows/cpu_state.h -------------------------------------------------------------------------------- /src/Emulation/NES/Windows/disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Windows/disassembler.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Windows/disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Windows/disassembler.h -------------------------------------------------------------------------------- /src/Emulation/NES/Windows/pattern_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Windows/pattern_tables.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/Windows/pattern_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/Windows/pattern_tables.h -------------------------------------------------------------------------------- /src/Emulation/NES/mos6502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/mos6502.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/mos6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/mos6502.h -------------------------------------------------------------------------------- /src/Emulation/NES/ppu2C02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/ppu2C02.cpp -------------------------------------------------------------------------------- /src/Emulation/NES/ppu2C02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Emulation/NES/ppu2C02.h -------------------------------------------------------------------------------- /src/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Input.cpp -------------------------------------------------------------------------------- /src/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/Input.h -------------------------------------------------------------------------------- /src/MemoryMapped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/MemoryMapped.cpp -------------------------------------------------------------------------------- /src/MemoryMapped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/MemoryMapped.h -------------------------------------------------------------------------------- /src/RenderImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/RenderImage.h -------------------------------------------------------------------------------- /src/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/audio.cpp -------------------------------------------------------------------------------- /src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/audio.h -------------------------------------------------------------------------------- /src/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/fs.h -------------------------------------------------------------------------------- /src/hexHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/hexHelper.h -------------------------------------------------------------------------------- /src/imguiWindows/imgui_memory_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/imguiWindows/imgui_memory_editor.cpp -------------------------------------------------------------------------------- /src/imguiWindows/imgui_memory_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/imguiWindows/imgui_memory_editor.h -------------------------------------------------------------------------------- /src/imguiWindows/imgui_tas_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/imguiWindows/imgui_tas_editor.cpp -------------------------------------------------------------------------------- /src/imguiWindows/imgui_tas_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/imguiWindows/imgui_tas_editor.h -------------------------------------------------------------------------------- /src/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/json.cpp -------------------------------------------------------------------------------- /src/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/json.h -------------------------------------------------------------------------------- /src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/logger.cpp -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/math.h -------------------------------------------------------------------------------- /src/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/md5.cpp -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/nativefiledialog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/nativefiledialog/LICENSE -------------------------------------------------------------------------------- /src/nativefiledialog/nfd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/nativefiledialog/nfd.cpp -------------------------------------------------------------------------------- /src/nativefiledialog/nfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/nativefiledialog/nfd.h -------------------------------------------------------------------------------- /src/nativefiledialog/nfd_cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/nativefiledialog/nfd_cocoa.m -------------------------------------------------------------------------------- /src/saver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/saver.cpp -------------------------------------------------------------------------------- /src/saver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/saver.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/sha1.cpp -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/tas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/tas.cpp -------------------------------------------------------------------------------- /src/tas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redcrafter/multiEmu/HEAD/src/tas.h --------------------------------------------------------------------------------