├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── compilation.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── CMakeLists.txt ├── Data ├── ControllerConfigs │ ├── VitaRightStick.ini │ ├── cbuttons.ini │ ├── defaultzlswap.ini │ ├── dpad.ini │ ├── dpadandbuttons.ini │ ├── dpadandbuttonsinv.ini │ ├── dpadandstick.ini │ ├── gamecubedefault.ini │ ├── gamecubedefjoyswap.ini │ ├── gamecubedefjoytrigswap.ini │ ├── gamecubedeflcdc.ini │ ├── gamecubedeftriggerswap.ini │ ├── gamecubedpad.ini │ ├── gamecubedpadlcdc.ini │ ├── gamecubedpadtriggerswap.ini │ ├── gamecubedpadz.ini │ └── gamecubedpadzlcdc.ini ├── Daedalus.cht ├── Languages │ ├── Brazilian.lng │ ├── Default.7z │ ├── Dutch.lng │ ├── French.lng │ ├── German.lng │ ├── Hungarian.lng │ ├── Italian.lng │ ├── Polish.lng │ ├── Russian.lng │ ├── Spanish.lng │ ├── Turkish.lng │ └── Ukrainian.lng ├── Resources │ ├── OpenSans.ttf │ └── logo.png ├── Roms │ └── ROMS_Go_here.txt ├── copying.txt ├── readme.txt └── roms.ini ├── Options.cmake ├── README.md ├── Source ├── Base │ ├── Assert.h │ ├── Macros.h │ ├── Singleton.h │ └── Types.h ├── CMakeLists.txt ├── CMakeSettings.json ├── Core │ ├── CMakeLists.txt │ ├── CPU.cpp │ ├── CPU.h │ ├── DMA.cpp │ ├── DMA.h │ ├── Dynamo.cpp │ ├── Dynamo.h │ ├── FlashMem.cpp │ ├── FlashMem.h │ ├── Interpret.cpp │ ├── Interpret.h │ ├── Interrupt.cpp │ ├── Interrupt.h │ ├── Memory.cpp │ ├── Memory.h │ ├── Memory_Read.inl │ ├── Memory_ReadInternal.inl │ ├── Memory_WriteValue.inl │ ├── N64Reg.h │ ├── PIF.cpp │ ├── PIF.h │ ├── R4300.cpp │ ├── R4300.h │ ├── R4300Instruction.h │ ├── R4300OpCode.h │ ├── R4300_Jump.inl │ ├── RDRam.cpp │ ├── RDRam.h │ ├── ROM.cpp │ ├── ROM.h │ ├── ROMImage.cpp │ ├── ROMImage.h │ ├── RSP_HLE.cpp │ ├── RSP_HLE.h │ ├── Save.cpp │ ├── Save.h │ ├── TLB.cpp │ └── TLB.h ├── Debug │ ├── CMakeLists.txt │ ├── DBGConsole.h │ ├── DebugConsoleImpl.cpp │ ├── DebugConsoleImpl.h │ ├── DebugLog.cpp │ ├── DebugLog.h │ ├── Dump.cpp │ ├── Dump.h │ ├── PrintOpCode.cpp │ ├── PrintOpCode.h │ ├── Registers.cpp │ ├── Registers.h │ ├── Synchroniser.cpp │ └── Synchroniser.h ├── DynaRec │ ├── ARM │ │ ├── AssemblyUtilsARM.cpp │ │ ├── AssemblyWriterARM.cpp │ │ ├── AssemblyWriterARM.h │ │ ├── CodeBufferManagerARM.cpp │ │ ├── CodeGeneratorARM.cpp │ │ ├── CodeGeneratorARM.h │ │ ├── DynarecStubARM.S │ │ └── DynarecTargetARM.h │ ├── AssemblyBuffer.h │ ├── AssemblyUtils.h │ ├── BranchType.cpp │ ├── BranchType.h │ ├── CMakeLists.txt │ ├── CodeBufferManager.h │ ├── CodeGenerator.h │ ├── DynaRecProfile.cpp │ ├── DynaRecProfile.h │ ├── Fragment.cpp │ ├── Fragment.h │ ├── FragmentCache.cpp │ ├── FragmentCache.h │ ├── IndirectExitMap.cpp │ ├── IndirectExitMap.h │ ├── N64RegisterCache.h │ ├── RegisterSpan.h │ ├── StaticAnalysis.cpp │ ├── StaticAnalysis.h │ ├── Trace.h │ ├── TraceRecorder.cpp │ ├── TraceRecorder.h │ ├── dummy │ │ ├── AssemblyUtilsDummy.cpp │ │ └── CodeBufferManagerDummy.cpp │ ├── mips │ │ ├── AssemblyUtilsPSP.cpp │ │ ├── AssemblyWriterPSP.cpp │ │ ├── AssemblyWriterPSP.h │ │ ├── CodeBufferManagerPSP.cpp │ │ ├── CodeGeneratorPSP.cpp │ │ ├── CodeGeneratorPSP.h │ │ ├── DynaRecDebug.cpp │ │ ├── DynaRecDebug.h │ │ ├── DynaRecStubs.S │ │ ├── DynarecTargetPSP.cpp │ │ └── DynarecTargetPSP.h │ ├── x64 │ │ ├── AssemblyUtilsX64.cpp │ │ ├── AssemblyWriterX64.cpp │ │ ├── AssemblyWriterX64.h │ │ ├── CodeBufferManagerX64.cpp │ │ ├── CodeGeneratorX64.cpp │ │ ├── CodeGeneratorX64.h │ │ ├── DynarecStubX64.S │ │ ├── DynarecStubX64.asm │ │ └── DynarecTargetX64.h │ └── x86 │ │ ├── AssemblyUtilsX86.cpp │ │ ├── AssemblyWriterX86.cpp │ │ ├── AssemblyWriterX86.h │ │ ├── CodeBufferManagerX86.cpp │ │ ├── CodeGeneratorX86.cpp │ │ ├── CodeGeneratorX86.h │ │ └── DynarecTargetX86.h ├── Graphics │ ├── CMakeLists.txt │ ├── ColourValue.cpp │ ├── ColourValue.h │ ├── GraphicsContext.h │ ├── HvqmTask.cpp │ ├── JpegTask.cpp │ ├── NativePixelFormat.h │ ├── NativeTexture.h │ ├── PngUtil.cpp │ ├── PngUtil.h │ ├── TextureFormat.h │ ├── TextureTransform.cpp │ └── TextureTransform.h ├── HLEAudio │ ├── ABI1.cpp │ ├── ABI2.cpp │ ├── ABI3.cpp │ ├── ABI3mp3.cpp │ ├── ABI_ADPCM.cpp │ ├── ABI_Buffers.cpp │ ├── ABI_Filters.cpp │ ├── ABI_MixerInterleave.cpp │ ├── ABI_Resample.cpp │ ├── AudioBuffer.cpp │ ├── AudioBuffer.h │ ├── AudioPlugin.h │ ├── CMakeLists.txt │ ├── ENV_Mixer.cpp │ ├── HLEAudioInternal.h │ ├── HLEAudioState.cpp │ ├── HLEAudioState.h │ ├── HLEMain.cpp │ └── Plugin │ │ ├── AudioPluginNone.cpp │ │ ├── CMakeLists.txt │ │ ├── CTR │ │ ├── AudioOutput.cpp │ │ ├── AudioOutput.h │ │ ├── AudioPluginCTR.cpp │ │ └── AudioPluginCTR.h │ │ ├── PSP │ │ ├── AudioPluginPSP.cpp │ │ ├── AudioPluginPSP_SDL.cpp │ │ ├── CMakeLists.txt │ │ ├── macOS │ │ │ └── AudioPluginOSX.cpp │ │ └── old │ │ │ ├── AudioOutput.cpp │ │ │ ├── AudioOutput.h.old │ │ │ ├── AudioPluginPSP.cpp │ │ │ └── AudioPluginPSP.h │ │ ├── SDL │ │ └── AudioPluginSDL.cpp │ │ └── Windows │ │ └── AudioPluginW32.cpp ├── HLEGraphics │ ├── BaseRenderer.cpp │ ├── BaseRenderer.h │ ├── CMakeLists.txt │ ├── CachedTexture.cpp │ ├── CachedTexture.h │ ├── ConvertFormats.h │ ├── ConvertImage.cpp │ ├── ConvertImage.h │ ├── ConvertTile.cpp │ ├── ConvertTile.h │ ├── DLDebug.cpp │ ├── DLDebug.h │ ├── DLParser.cpp │ ├── DLParser.h │ ├── DaedalusVtx.h │ ├── DisplayListDebugger.h │ ├── GraphicsPlugin.h │ ├── Microcode.cpp │ ├── Microcode.h │ ├── N64PixelFormat.h │ ├── RDP.cpp │ ├── RDP.h │ ├── RDPStateManager.cpp │ ├── RDPStateManager.h │ ├── TMEM.cpp │ ├── TMEM.h │ ├── TextureCache.cpp │ ├── TextureCache.h │ ├── TextureInfo.cpp │ ├── TextureInfo.h │ └── uCodes │ │ ├── Ucode.cpp │ │ ├── Ucode.h │ │ ├── UcodeDefs.h │ │ ├── Ucode_Beta.h │ │ ├── Ucode_Conker.h │ │ ├── Ucode_DKR.h │ │ ├── Ucode_FB.h │ │ ├── Ucode_GBI0.h │ │ ├── Ucode_GBI1.h │ │ ├── Ucode_GBI2.h │ │ ├── Ucode_GE.h │ │ ├── Ucode_LL.h │ │ ├── Ucode_PD.h │ │ ├── Ucode_S2DEX.h │ │ └── Ucode_Sprite2D.h ├── Input │ ├── CMakeLists.txt │ ├── CTR │ │ └── InputManagerCTR.cpp │ ├── InputManager.h │ ├── PSP │ │ └── InputManagerPSP.cpp │ └── SDL │ │ └── InputManagerSDL.cpp ├── Interface │ ├── CMakeLists.txt │ ├── Cheats.cpp │ ├── Cheats.h │ ├── ConfigOptions.cpp │ ├── ConfigOptions.h │ ├── GlobalPreferences.h │ ├── Preferences.cpp │ ├── Preferences.h │ ├── RomDB.cpp │ ├── RomDB.h │ ├── RomPreferences.h │ ├── SaveState.cpp │ └── SaveState.h ├── OSHLE │ ├── CMakeLists.txt │ ├── OS.cpp │ ├── OS.h │ ├── OSMesgQueue.h │ ├── OSTask.h │ ├── patch.cpp │ ├── patch.h │ ├── patch_ai_hle.inl │ ├── patch_cache_hle.inl │ ├── patch_eeprom_hle.inl │ ├── patch_gu_hle.inl │ ├── patch_math_hle.inl │ ├── patch_mesg_hle.inl │ ├── patch_pi_hle.inl │ ├── patch_regs_hle.inl │ ├── patch_si_hle.inl │ ├── patch_sp_hle.inl │ ├── patch_symbols.h │ ├── patch_symbols.inl │ ├── patch_thread_hle.inl │ ├── patch_timer_hle.inl │ ├── patch_tlb_hle.inl │ ├── patch_util_hle.inl │ └── patch_vi_hle.inl ├── RomFile │ ├── CMakeLists.txt │ ├── ROMBuffer.cpp │ ├── ROMBuffer.h │ ├── RomFile.cpp │ ├── RomFile.h │ ├── RomFileCache.cpp │ ├── RomFileCache.h │ ├── RomFileCompressed.cpp │ ├── RomFileCompressed.h │ ├── RomFileMemory.cpp │ ├── RomFileMemory.h │ ├── RomFileUncompressed.cpp │ ├── RomFileUncompressed.h │ ├── RomSettings.cpp │ └── RomSettings.h ├── SysCTR │ ├── CMakeLists.txt │ ├── Debug │ │ ├── CMakeLists.txt │ │ ├── DBGConsoleCTR.cpp │ │ └── DaedalusAssertCTR.cpp │ ├── Graphics │ │ ├── CMakeLists.txt │ │ ├── GraphicsContextCTR.cpp │ │ └── NativeTextureCTR.cpp │ ├── HLEGraphics │ │ ├── BlendModes.cpp │ │ ├── BlendModes.h │ │ ├── CMakeLists.txt │ │ ├── ColourAdjuster.cpp │ │ ├── ColourAdjuster.h │ │ ├── Combiner │ │ │ ├── BlendConstant.cpp │ │ │ ├── BlendConstant.h │ │ │ ├── CombinerExpression.cpp │ │ │ ├── CombinerExpression.h │ │ │ ├── CombinerInput.h │ │ │ ├── CombinerTree.cpp │ │ │ ├── CombinerTree.h │ │ │ ├── RenderSettings.cpp │ │ │ └── RenderSettings.h │ │ ├── GraphicsPluginCTR.cpp │ │ ├── RendererCTR.cpp │ │ └── RendererCTR.h │ ├── Resources │ │ ├── audio_silent.wav │ │ ├── banner.bnr │ │ ├── banner.png │ │ ├── daedalus.smdh │ │ ├── icon.png │ │ ├── romfs.bin │ │ ├── romfs │ │ │ └── Roboto-Medium.ttf │ │ └── template.rsf │ ├── UI │ │ ├── CMakeLists.txt │ │ ├── InGameMenu.cpp │ │ ├── InGameMenu.h │ │ ├── RomSelector.cpp │ │ ├── RomSelector.h │ │ ├── UserInterface.cpp │ │ └── UserInterface.h │ ├── Utility │ │ ├── CMakeLists.txt │ │ ├── CacheCTR.S │ │ ├── MemoryCTR.c │ │ └── MemoryCTR.h │ └── main.cpp ├── SysGL │ ├── CMakeLists.txt │ ├── GL.h │ ├── Graphics │ │ ├── DrawTextSDL.cpp │ │ ├── GraphicsContextGL.cpp │ │ ├── NativeTextureGL.cpp │ │ └── UIContextGL.cpp │ └── HLEGraphics │ │ ├── GraphicsPluginGL.cpp │ │ ├── RendererGL.cpp │ │ ├── RendererGL.h │ │ └── n64.psh ├── SysGLES │ ├── CMakeLists.txt │ ├── GL.h │ ├── Graphics │ │ ├── DrawTextSDL.cpp │ │ ├── GraphicsContextGL.cpp │ │ ├── NativeTextureGL.cpp │ │ └── UIContextGL.cpp │ └── HLEGraphics │ │ ├── GraphicsPluginGL.cpp │ │ ├── RendererGL.cpp │ │ ├── RendererGL.h │ │ └── n64.psh ├── SysPSP │ ├── CMakeLists.txt │ ├── Debug │ │ ├── CMakeLists.txt │ │ ├── DBGConsolePSP.cpp │ │ └── DaedalusAssertPSP.cpp │ ├── Graphics │ │ ├── CMakeLists.txt │ │ ├── DrawTextPSP.cpp │ │ ├── GraphicsContextPSP.cpp │ │ ├── NativeTexturePSP.cpp │ │ ├── UIContextPSP.cpp │ │ ├── VideoMemoryManager.cpp │ │ └── VideoMemoryManager.h │ ├── HLEGraphics │ │ ├── BlendModes.cpp │ │ ├── BlendModes.h │ │ ├── Blender.cpp │ │ ├── CMakeLists.txt │ │ ├── ColourAdjuster.cpp │ │ ├── ColourAdjuster.h │ │ ├── Combiner │ │ │ ├── BlendConstant.cpp │ │ │ ├── BlendConstant.h │ │ │ ├── CombinerExpression.cpp │ │ │ ├── CombinerExpression.h │ │ │ ├── CombinerInput.h │ │ │ ├── CombinerTree.cpp │ │ │ ├── CombinerTree.h │ │ │ ├── RenderSettings.cpp │ │ │ └── RenderSettings.h │ │ ├── ConvertVertices.S │ │ ├── DisplayListDebugger.cpp │ │ ├── GraphicsPluginPSP.cpp │ │ ├── RendererPSP.cpp │ │ ├── RendererPSP.h │ │ ├── TnLVFPU.S │ │ ├── TransformWithColour.S │ │ ├── TransformWithLighting.S │ │ └── VectorClipping.S │ ├── Math │ │ └── Math.h │ ├── PRX │ │ ├── CMakeLists.txt │ │ ├── DveMgr │ │ │ ├── Makefile │ │ │ ├── exports.c │ │ │ ├── exports.exp │ │ │ ├── libpspdve_driver.a │ │ │ ├── libpspimpose_driver.a │ │ │ ├── main.c │ │ │ ├── pspDveManager.S │ │ │ └── pspDveManager_driver.S │ │ ├── ExceptionHandler │ │ │ ├── Makefile │ │ │ ├── exception_asm.S │ │ │ ├── exports.exp │ │ │ └── main.c │ │ └── MediaEngine │ │ │ ├── Makefile │ │ │ ├── MediaEngine.S │ │ │ ├── exports.exp │ │ │ ├── main.c │ │ │ ├── me.c │ │ │ ├── me.h │ │ │ └── me_stub.S │ ├── Resources │ │ └── eboot_icons │ │ │ ├── icon0.png │ │ │ └── pic1.png │ ├── Utility │ │ ├── AtomicPrimitives.S │ │ ├── BatteryPSP.cpp │ │ ├── CMakeLists.txt │ │ ├── CacheUtil.h │ │ ├── DebugMemory.cpp │ │ ├── DisableFPUExceptions.S │ │ ├── FastMemcpyPSP.cpp │ │ ├── ModulePSP.cpp │ │ ├── ModulePSP.h │ │ ├── VolatileMemPSP.cpp │ │ └── exception.cpp │ └── main.cpp ├── SysPosix │ ├── CMakeLists.txt │ ├── Debug │ │ ├── CMakeLists.txt │ │ ├── DaedalusAssertPosix.cpp │ │ ├── DebugConsolePosix.cpp │ │ ├── Web │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── dldebugger.css │ │ │ ├── html │ │ │ │ └── dldebugger.html │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── dldebugger.js │ │ │ │ └── jquery-1.9.1.min.js │ │ ├── WebDebug.cpp │ │ ├── WebDebug.h │ │ ├── WebDebugTemplate.cpp │ │ └── WebDebugTemplate.h │ ├── HLEGraphics │ │ ├── CMakeLists.txt │ │ ├── DisplayListDebugger.cpp │ │ ├── TextureCacheWebDebug.cpp │ │ └── TextureCacheWebDebug.h │ ├── Utility │ │ ├── CMakeLists.txt │ │ └── CondPosix.cpp │ └── main.cpp ├── SysW32 │ ├── CMakeLists.txt │ ├── Debug │ │ ├── CMakeLists.txt │ │ ├── DaedalusAssertW32.cpp │ │ └── DebugConsoleW32.cpp │ └── Utility │ │ ├── CMakeLists.txt │ │ ├── CondW32.cpp │ │ └── DISASM86.cpp ├── System │ ├── AtomicPrimitives.h │ ├── CMakeLists.txt │ ├── CompressedStream.cpp │ ├── CompressedStream.h │ ├── Condition.h │ ├── Endian.h │ ├── Mutex.h │ ├── SpinLock.h │ ├── SystemInit.cpp │ ├── SystemInit.h │ ├── Thread │ │ ├── CTR │ │ │ └── Thread.cpp │ │ ├── PSP │ │ │ └── Thread.cpp │ │ ├── Posix │ │ │ └── Thread.cpp │ │ └── Thread.h │ └── Timing │ │ ├── CTR │ │ └── Timing.cpp │ │ ├── PSP │ │ └── Timing.cpp │ │ ├── Posix │ │ └── Timing.cpp │ │ ├── Timing.h │ │ └── Windows │ │ └── Timing.cpp ├── UI │ ├── AboutComponent.cpp │ ├── AboutComponent.h │ ├── AdjustDeadzoneScreen.cpp │ ├── AdjustDeadzoneScreen.h │ ├── AdvancedOptionsScreen.cpp │ ├── AdvancedOptionsScreen.h │ ├── CMakeLists.txt │ ├── CheatOptionsScreen.cpp │ ├── CheatOptionsScreen.h │ ├── ColourPulser.cpp │ ├── ColourPulser.h │ ├── Dialogs.cpp │ ├── Dialogs.h │ ├── DrawText.h │ ├── DrawTextUtilities.cpp │ ├── DrawTextUtilities.h │ ├── GlobalSettingsComponent.cpp │ ├── GlobalSettingsComponent.h │ ├── MainMenuScreen.cpp │ ├── MainMenuScreen.h │ ├── Menu.h │ ├── PauseOptionsComponent.cpp │ ├── PauseOptionsComponent.h │ ├── PauseScreen.cpp │ ├── PauseScreen.h │ ├── RomPreferencesScreen.cpp │ ├── RomPreferencesScreen.h │ ├── RomSelectorComponent.cpp │ ├── RomSelectorComponent.h │ ├── SavestateSelectorComponent.cpp │ ├── SavestateSelectorComponent.h │ ├── SelectedRomComponent.cpp │ ├── SelectedRomComponent.h │ ├── SplashScreen.cpp │ ├── SplashScreen.h │ ├── UIAlignment.h │ ├── UICommand.cpp │ ├── UICommand.h │ ├── UIComponent.cpp │ ├── UIComponent.h │ ├── UIContext.h │ ├── UIElement.cpp │ ├── UIElement.h │ ├── UIScreen.cpp │ ├── UIScreen.h │ ├── UISetting.cpp │ ├── UISetting.h │ └── UISpacer.h ├── Ultra │ ├── ultra_R4300.h │ ├── ultra_abi.h │ ├── ultra_gbi.h │ ├── ultra_mbi.h │ ├── ultra_os.h │ ├── ultra_rcp.h │ └── ultra_sptask.h ├── Utility │ ├── BatchTest.cpp │ ├── BatchTest.h │ ├── CMakeLists.txt │ ├── CRC.cpp │ ├── CRC.h │ ├── FastMemcpy.cpp │ ├── FastMemcpy.h │ ├── FastMemcpy_test.cpp │ ├── FramerateLimiter.cpp │ ├── FramerateLimiter.h │ ├── Hash.cpp │ ├── Hash.h │ ├── IniFile.cpp │ ├── IniFile.h │ ├── MathUtil.h │ ├── MemoryHeap.cpp │ ├── MemoryHeap.h │ ├── MemoryPool.cpp │ ├── MemoryPool.h │ ├── Paths.cpp │ ├── Paths.h │ ├── Profiler.cpp │ ├── Profiler.h │ ├── Stream.cpp │ ├── Stream.h │ ├── String.h │ ├── StringUtil.cpp │ ├── StringUtil.h │ ├── Timer.cpp │ ├── Timer.h │ ├── Translate.cpp │ ├── Translate.h │ └── VolatileMem.h └── third_party │ └── webby │ ├── LICENSE │ ├── README.md │ ├── demo.c │ ├── tundra.lua │ ├── webby.c │ ├── webby.h │ ├── webby_unix.h │ └── webby_win32.h ├── Tools └── roms.py ├── checks.json ├── copying.txt ├── vcpkg-configuration.json └── vcpkg.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/compilation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/.github/workflows/compilation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Data/ControllerConfigs/VitaRightStick.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/VitaRightStick.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/cbuttons.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/cbuttons.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/defaultzlswap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/defaultzlswap.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/dpad.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/dpad.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/dpadandbuttons.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/dpadandbuttons.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/dpadandbuttonsinv.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/dpadandbuttonsinv.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/dpadandstick.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/dpadandstick.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedefault.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedefault.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedefjoyswap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedefjoyswap.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedefjoytrigswap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedefjoytrigswap.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedeflcdc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedeflcdc.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedeftriggerswap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedeftriggerswap.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedpad.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedpad.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedpadlcdc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedpadlcdc.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedpadtriggerswap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedpadtriggerswap.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedpadz.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedpadz.ini -------------------------------------------------------------------------------- /Data/ControllerConfigs/gamecubedpadzlcdc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/ControllerConfigs/gamecubedpadzlcdc.ini -------------------------------------------------------------------------------- /Data/Daedalus.cht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Daedalus.cht -------------------------------------------------------------------------------- /Data/Languages/Brazilian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Brazilian.lng -------------------------------------------------------------------------------- /Data/Languages/Default.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Default.7z -------------------------------------------------------------------------------- /Data/Languages/Dutch.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Dutch.lng -------------------------------------------------------------------------------- /Data/Languages/French.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/French.lng -------------------------------------------------------------------------------- /Data/Languages/German.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/German.lng -------------------------------------------------------------------------------- /Data/Languages/Hungarian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Hungarian.lng -------------------------------------------------------------------------------- /Data/Languages/Italian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Italian.lng -------------------------------------------------------------------------------- /Data/Languages/Polish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Polish.lng -------------------------------------------------------------------------------- /Data/Languages/Russian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Russian.lng -------------------------------------------------------------------------------- /Data/Languages/Spanish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Spanish.lng -------------------------------------------------------------------------------- /Data/Languages/Turkish.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Turkish.lng -------------------------------------------------------------------------------- /Data/Languages/Ukrainian.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Languages/Ukrainian.lng -------------------------------------------------------------------------------- /Data/Resources/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Resources/OpenSans.ttf -------------------------------------------------------------------------------- /Data/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/Resources/logo.png -------------------------------------------------------------------------------- /Data/Roms/ROMS_Go_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/copying.txt -------------------------------------------------------------------------------- /Data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/readme.txt -------------------------------------------------------------------------------- /Data/roms.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Data/roms.ini -------------------------------------------------------------------------------- /Options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Options.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/README.md -------------------------------------------------------------------------------- /Source/Base/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Base/Assert.h -------------------------------------------------------------------------------- /Source/Base/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Base/Macros.h -------------------------------------------------------------------------------- /Source/Base/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Base/Singleton.h -------------------------------------------------------------------------------- /Source/Base/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Base/Types.h -------------------------------------------------------------------------------- /Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/CMakeLists.txt -------------------------------------------------------------------------------- /Source/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/CMakeSettings.json -------------------------------------------------------------------------------- /Source/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Core/CPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/CPU.cpp -------------------------------------------------------------------------------- /Source/Core/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/CPU.h -------------------------------------------------------------------------------- /Source/Core/DMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/DMA.cpp -------------------------------------------------------------------------------- /Source/Core/DMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/DMA.h -------------------------------------------------------------------------------- /Source/Core/Dynamo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Dynamo.cpp -------------------------------------------------------------------------------- /Source/Core/Dynamo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Dynamo.h -------------------------------------------------------------------------------- /Source/Core/FlashMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/FlashMem.cpp -------------------------------------------------------------------------------- /Source/Core/FlashMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/FlashMem.h -------------------------------------------------------------------------------- /Source/Core/Interpret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Interpret.cpp -------------------------------------------------------------------------------- /Source/Core/Interpret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Interpret.h -------------------------------------------------------------------------------- /Source/Core/Interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Interrupt.cpp -------------------------------------------------------------------------------- /Source/Core/Interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Interrupt.h -------------------------------------------------------------------------------- /Source/Core/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Memory.cpp -------------------------------------------------------------------------------- /Source/Core/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Memory.h -------------------------------------------------------------------------------- /Source/Core/Memory_Read.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Memory_Read.inl -------------------------------------------------------------------------------- /Source/Core/Memory_ReadInternal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Memory_ReadInternal.inl -------------------------------------------------------------------------------- /Source/Core/Memory_WriteValue.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Memory_WriteValue.inl -------------------------------------------------------------------------------- /Source/Core/N64Reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/N64Reg.h -------------------------------------------------------------------------------- /Source/Core/PIF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/PIF.cpp -------------------------------------------------------------------------------- /Source/Core/PIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/PIF.h -------------------------------------------------------------------------------- /Source/Core/R4300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/R4300.cpp -------------------------------------------------------------------------------- /Source/Core/R4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/R4300.h -------------------------------------------------------------------------------- /Source/Core/R4300Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/R4300Instruction.h -------------------------------------------------------------------------------- /Source/Core/R4300OpCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/R4300OpCode.h -------------------------------------------------------------------------------- /Source/Core/R4300_Jump.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/R4300_Jump.inl -------------------------------------------------------------------------------- /Source/Core/RDRam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/RDRam.cpp -------------------------------------------------------------------------------- /Source/Core/RDRam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/RDRam.h -------------------------------------------------------------------------------- /Source/Core/ROM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/ROM.cpp -------------------------------------------------------------------------------- /Source/Core/ROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/ROM.h -------------------------------------------------------------------------------- /Source/Core/ROMImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/ROMImage.cpp -------------------------------------------------------------------------------- /Source/Core/ROMImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/ROMImage.h -------------------------------------------------------------------------------- /Source/Core/RSP_HLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/RSP_HLE.cpp -------------------------------------------------------------------------------- /Source/Core/RSP_HLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/RSP_HLE.h -------------------------------------------------------------------------------- /Source/Core/Save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Save.cpp -------------------------------------------------------------------------------- /Source/Core/Save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/Save.h -------------------------------------------------------------------------------- /Source/Core/TLB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/TLB.cpp -------------------------------------------------------------------------------- /Source/Core/TLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Core/TLB.h -------------------------------------------------------------------------------- /Source/Debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Debug/DBGConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/DBGConsole.h -------------------------------------------------------------------------------- /Source/Debug/DebugConsoleImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/DebugConsoleImpl.cpp -------------------------------------------------------------------------------- /Source/Debug/DebugConsoleImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/DebugConsoleImpl.h -------------------------------------------------------------------------------- /Source/Debug/DebugLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/DebugLog.cpp -------------------------------------------------------------------------------- /Source/Debug/DebugLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/DebugLog.h -------------------------------------------------------------------------------- /Source/Debug/Dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/Dump.cpp -------------------------------------------------------------------------------- /Source/Debug/Dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/Dump.h -------------------------------------------------------------------------------- /Source/Debug/PrintOpCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/PrintOpCode.cpp -------------------------------------------------------------------------------- /Source/Debug/PrintOpCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/PrintOpCode.h -------------------------------------------------------------------------------- /Source/Debug/Registers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/Registers.cpp -------------------------------------------------------------------------------- /Source/Debug/Registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/Registers.h -------------------------------------------------------------------------------- /Source/Debug/Synchroniser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/Synchroniser.cpp -------------------------------------------------------------------------------- /Source/Debug/Synchroniser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Debug/Synchroniser.h -------------------------------------------------------------------------------- /Source/DynaRec/ARM/AssemblyUtilsARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/ARM/AssemblyUtilsARM.cpp -------------------------------------------------------------------------------- /Source/DynaRec/ARM/AssemblyWriterARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/ARM/AssemblyWriterARM.cpp -------------------------------------------------------------------------------- /Source/DynaRec/ARM/AssemblyWriterARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/ARM/AssemblyWriterARM.h -------------------------------------------------------------------------------- /Source/DynaRec/ARM/CodeBufferManagerARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/ARM/CodeBufferManagerARM.cpp -------------------------------------------------------------------------------- /Source/DynaRec/ARM/CodeGeneratorARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/ARM/CodeGeneratorARM.cpp -------------------------------------------------------------------------------- /Source/DynaRec/ARM/CodeGeneratorARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/ARM/CodeGeneratorARM.h -------------------------------------------------------------------------------- /Source/DynaRec/ARM/DynarecStubARM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/ARM/DynarecStubARM.S -------------------------------------------------------------------------------- /Source/DynaRec/ARM/DynarecTargetARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/ARM/DynarecTargetARM.h -------------------------------------------------------------------------------- /Source/DynaRec/AssemblyBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/AssemblyBuffer.h -------------------------------------------------------------------------------- /Source/DynaRec/AssemblyUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/AssemblyUtils.h -------------------------------------------------------------------------------- /Source/DynaRec/BranchType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/BranchType.cpp -------------------------------------------------------------------------------- /Source/DynaRec/BranchType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/BranchType.h -------------------------------------------------------------------------------- /Source/DynaRec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/CMakeLists.txt -------------------------------------------------------------------------------- /Source/DynaRec/CodeBufferManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/CodeBufferManager.h -------------------------------------------------------------------------------- /Source/DynaRec/CodeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/CodeGenerator.h -------------------------------------------------------------------------------- /Source/DynaRec/DynaRecProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/DynaRecProfile.cpp -------------------------------------------------------------------------------- /Source/DynaRec/DynaRecProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/DynaRecProfile.h -------------------------------------------------------------------------------- /Source/DynaRec/Fragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/Fragment.cpp -------------------------------------------------------------------------------- /Source/DynaRec/Fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/Fragment.h -------------------------------------------------------------------------------- /Source/DynaRec/FragmentCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/FragmentCache.cpp -------------------------------------------------------------------------------- /Source/DynaRec/FragmentCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/FragmentCache.h -------------------------------------------------------------------------------- /Source/DynaRec/IndirectExitMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/IndirectExitMap.cpp -------------------------------------------------------------------------------- /Source/DynaRec/IndirectExitMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/IndirectExitMap.h -------------------------------------------------------------------------------- /Source/DynaRec/N64RegisterCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/N64RegisterCache.h -------------------------------------------------------------------------------- /Source/DynaRec/RegisterSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/RegisterSpan.h -------------------------------------------------------------------------------- /Source/DynaRec/StaticAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/StaticAnalysis.cpp -------------------------------------------------------------------------------- /Source/DynaRec/StaticAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/StaticAnalysis.h -------------------------------------------------------------------------------- /Source/DynaRec/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/Trace.h -------------------------------------------------------------------------------- /Source/DynaRec/TraceRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/TraceRecorder.cpp -------------------------------------------------------------------------------- /Source/DynaRec/TraceRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/TraceRecorder.h -------------------------------------------------------------------------------- /Source/DynaRec/dummy/AssemblyUtilsDummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/dummy/AssemblyUtilsDummy.cpp -------------------------------------------------------------------------------- /Source/DynaRec/dummy/CodeBufferManagerDummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/dummy/CodeBufferManagerDummy.cpp -------------------------------------------------------------------------------- /Source/DynaRec/mips/AssemblyUtilsPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/AssemblyUtilsPSP.cpp -------------------------------------------------------------------------------- /Source/DynaRec/mips/AssemblyWriterPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/AssemblyWriterPSP.cpp -------------------------------------------------------------------------------- /Source/DynaRec/mips/AssemblyWriterPSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/AssemblyWriterPSP.h -------------------------------------------------------------------------------- /Source/DynaRec/mips/CodeBufferManagerPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/CodeBufferManagerPSP.cpp -------------------------------------------------------------------------------- /Source/DynaRec/mips/CodeGeneratorPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/CodeGeneratorPSP.cpp -------------------------------------------------------------------------------- /Source/DynaRec/mips/CodeGeneratorPSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/CodeGeneratorPSP.h -------------------------------------------------------------------------------- /Source/DynaRec/mips/DynaRecDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/DynaRecDebug.cpp -------------------------------------------------------------------------------- /Source/DynaRec/mips/DynaRecDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/DynaRecDebug.h -------------------------------------------------------------------------------- /Source/DynaRec/mips/DynaRecStubs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/DynaRecStubs.S -------------------------------------------------------------------------------- /Source/DynaRec/mips/DynarecTargetPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/DynarecTargetPSP.cpp -------------------------------------------------------------------------------- /Source/DynaRec/mips/DynarecTargetPSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/mips/DynarecTargetPSP.h -------------------------------------------------------------------------------- /Source/DynaRec/x64/AssemblyUtilsX64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x64/AssemblyUtilsX64.cpp -------------------------------------------------------------------------------- /Source/DynaRec/x64/AssemblyWriterX64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x64/AssemblyWriterX64.cpp -------------------------------------------------------------------------------- /Source/DynaRec/x64/AssemblyWriterX64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x64/AssemblyWriterX64.h -------------------------------------------------------------------------------- /Source/DynaRec/x64/CodeBufferManagerX64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x64/CodeBufferManagerX64.cpp -------------------------------------------------------------------------------- /Source/DynaRec/x64/CodeGeneratorX64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x64/CodeGeneratorX64.cpp -------------------------------------------------------------------------------- /Source/DynaRec/x64/CodeGeneratorX64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x64/CodeGeneratorX64.h -------------------------------------------------------------------------------- /Source/DynaRec/x64/DynarecStubX64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x64/DynarecStubX64.S -------------------------------------------------------------------------------- /Source/DynaRec/x64/DynarecStubX64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x64/DynarecStubX64.asm -------------------------------------------------------------------------------- /Source/DynaRec/x64/DynarecTargetX64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x64/DynarecTargetX64.h -------------------------------------------------------------------------------- /Source/DynaRec/x86/AssemblyUtilsX86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x86/AssemblyUtilsX86.cpp -------------------------------------------------------------------------------- /Source/DynaRec/x86/AssemblyWriterX86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x86/AssemblyWriterX86.cpp -------------------------------------------------------------------------------- /Source/DynaRec/x86/AssemblyWriterX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x86/AssemblyWriterX86.h -------------------------------------------------------------------------------- /Source/DynaRec/x86/CodeBufferManagerX86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x86/CodeBufferManagerX86.cpp -------------------------------------------------------------------------------- /Source/DynaRec/x86/CodeGeneratorX86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x86/CodeGeneratorX86.cpp -------------------------------------------------------------------------------- /Source/DynaRec/x86/CodeGeneratorX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x86/CodeGeneratorX86.h -------------------------------------------------------------------------------- /Source/DynaRec/x86/DynarecTargetX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/DynaRec/x86/DynarecTargetX86.h -------------------------------------------------------------------------------- /Source/Graphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Graphics/ColourValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/ColourValue.cpp -------------------------------------------------------------------------------- /Source/Graphics/ColourValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/ColourValue.h -------------------------------------------------------------------------------- /Source/Graphics/GraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/GraphicsContext.h -------------------------------------------------------------------------------- /Source/Graphics/HvqmTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/HvqmTask.cpp -------------------------------------------------------------------------------- /Source/Graphics/JpegTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/JpegTask.cpp -------------------------------------------------------------------------------- /Source/Graphics/NativePixelFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/NativePixelFormat.h -------------------------------------------------------------------------------- /Source/Graphics/NativeTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/NativeTexture.h -------------------------------------------------------------------------------- /Source/Graphics/PngUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/PngUtil.cpp -------------------------------------------------------------------------------- /Source/Graphics/PngUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/PngUtil.h -------------------------------------------------------------------------------- /Source/Graphics/TextureFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/TextureFormat.h -------------------------------------------------------------------------------- /Source/Graphics/TextureTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/TextureTransform.cpp -------------------------------------------------------------------------------- /Source/Graphics/TextureTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Graphics/TextureTransform.h -------------------------------------------------------------------------------- /Source/HLEAudio/ABI1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ABI1.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/ABI2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ABI2.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/ABI3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ABI3.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/ABI3mp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ABI3mp3.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/ABI_ADPCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ABI_ADPCM.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/ABI_Buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ABI_Buffers.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/ABI_Filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ABI_Filters.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/ABI_MixerInterleave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ABI_MixerInterleave.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/ABI_Resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ABI_Resample.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/AudioBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/AudioBuffer.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/AudioBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/AudioBuffer.h -------------------------------------------------------------------------------- /Source/HLEAudio/AudioPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/AudioPlugin.h -------------------------------------------------------------------------------- /Source/HLEAudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/CMakeLists.txt -------------------------------------------------------------------------------- /Source/HLEAudio/ENV_Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/ENV_Mixer.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/HLEAudioInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/HLEAudioInternal.h -------------------------------------------------------------------------------- /Source/HLEAudio/HLEAudioState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/HLEAudioState.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/HLEAudioState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/HLEAudioState.h -------------------------------------------------------------------------------- /Source/HLEAudio/HLEMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/HLEMain.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/AudioPluginNone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/AudioPluginNone.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/CMakeLists.txt -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/CTR/AudioOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/CTR/AudioOutput.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/CTR/AudioOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/CTR/AudioOutput.h -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/CTR/AudioPluginCTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/CTR/AudioPluginCTR.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/CTR/AudioPluginCTR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/CTR/AudioPluginCTR.h -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/PSP/AudioPluginPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/PSP/AudioPluginPSP.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/PSP/AudioPluginPSP_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/PSP/AudioPluginPSP_SDL.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/PSP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/PSP/CMakeLists.txt -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/PSP/macOS/AudioPluginOSX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/PSP/macOS/AudioPluginOSX.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/PSP/old/AudioOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/PSP/old/AudioOutput.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/PSP/old/AudioOutput.h.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/PSP/old/AudioOutput.h.old -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/PSP/old/AudioPluginPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/PSP/old/AudioPluginPSP.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/PSP/old/AudioPluginPSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/PSP/old/AudioPluginPSP.h -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/SDL/AudioPluginSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/SDL/AudioPluginSDL.cpp -------------------------------------------------------------------------------- /Source/HLEAudio/Plugin/Windows/AudioPluginW32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEAudio/Plugin/Windows/AudioPluginW32.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/BaseRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/BaseRenderer.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/BaseRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/BaseRenderer.h -------------------------------------------------------------------------------- /Source/HLEGraphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/CMakeLists.txt -------------------------------------------------------------------------------- /Source/HLEGraphics/CachedTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/CachedTexture.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/CachedTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/CachedTexture.h -------------------------------------------------------------------------------- /Source/HLEGraphics/ConvertFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/ConvertFormats.h -------------------------------------------------------------------------------- /Source/HLEGraphics/ConvertImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/ConvertImage.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/ConvertImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/ConvertImage.h -------------------------------------------------------------------------------- /Source/HLEGraphics/ConvertTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/ConvertTile.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/ConvertTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/ConvertTile.h -------------------------------------------------------------------------------- /Source/HLEGraphics/DLDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/DLDebug.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/DLDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/DLDebug.h -------------------------------------------------------------------------------- /Source/HLEGraphics/DLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/DLParser.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/DLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/DLParser.h -------------------------------------------------------------------------------- /Source/HLEGraphics/DaedalusVtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/DaedalusVtx.h -------------------------------------------------------------------------------- /Source/HLEGraphics/DisplayListDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/DisplayListDebugger.h -------------------------------------------------------------------------------- /Source/HLEGraphics/GraphicsPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/GraphicsPlugin.h -------------------------------------------------------------------------------- /Source/HLEGraphics/Microcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/Microcode.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/Microcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/Microcode.h -------------------------------------------------------------------------------- /Source/HLEGraphics/N64PixelFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/N64PixelFormat.h -------------------------------------------------------------------------------- /Source/HLEGraphics/RDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/RDP.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/RDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/RDP.h -------------------------------------------------------------------------------- /Source/HLEGraphics/RDPStateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/RDPStateManager.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/RDPStateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/RDPStateManager.h -------------------------------------------------------------------------------- /Source/HLEGraphics/TMEM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/TMEM.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/TMEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/TMEM.h -------------------------------------------------------------------------------- /Source/HLEGraphics/TextureCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/TextureCache.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/TextureCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/TextureCache.h -------------------------------------------------------------------------------- /Source/HLEGraphics/TextureInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/TextureInfo.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/TextureInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/TextureInfo.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode.cpp -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/UcodeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/UcodeDefs.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_Beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_Beta.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_Conker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_Conker.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_DKR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_DKR.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_FB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_FB.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_GBI0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_GBI0.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_GBI1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_GBI1.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_GBI2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_GBI2.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_GE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_GE.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_LL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_LL.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_PD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_PD.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_S2DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_S2DEX.h -------------------------------------------------------------------------------- /Source/HLEGraphics/uCodes/Ucode_Sprite2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/HLEGraphics/uCodes/Ucode_Sprite2D.h -------------------------------------------------------------------------------- /Source/Input/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Input/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Input/CTR/InputManagerCTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Input/CTR/InputManagerCTR.cpp -------------------------------------------------------------------------------- /Source/Input/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Input/InputManager.h -------------------------------------------------------------------------------- /Source/Input/PSP/InputManagerPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Input/PSP/InputManagerPSP.cpp -------------------------------------------------------------------------------- /Source/Input/SDL/InputManagerSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Input/SDL/InputManagerSDL.cpp -------------------------------------------------------------------------------- /Source/Interface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Interface/Cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/Cheats.cpp -------------------------------------------------------------------------------- /Source/Interface/Cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/Cheats.h -------------------------------------------------------------------------------- /Source/Interface/ConfigOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/ConfigOptions.cpp -------------------------------------------------------------------------------- /Source/Interface/ConfigOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/ConfigOptions.h -------------------------------------------------------------------------------- /Source/Interface/GlobalPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/GlobalPreferences.h -------------------------------------------------------------------------------- /Source/Interface/Preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/Preferences.cpp -------------------------------------------------------------------------------- /Source/Interface/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/Preferences.h -------------------------------------------------------------------------------- /Source/Interface/RomDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/RomDB.cpp -------------------------------------------------------------------------------- /Source/Interface/RomDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/RomDB.h -------------------------------------------------------------------------------- /Source/Interface/RomPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/RomPreferences.h -------------------------------------------------------------------------------- /Source/Interface/SaveState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/SaveState.cpp -------------------------------------------------------------------------------- /Source/Interface/SaveState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Interface/SaveState.h -------------------------------------------------------------------------------- /Source/OSHLE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/CMakeLists.txt -------------------------------------------------------------------------------- /Source/OSHLE/OS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/OS.cpp -------------------------------------------------------------------------------- /Source/OSHLE/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/OS.h -------------------------------------------------------------------------------- /Source/OSHLE/OSMesgQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/OSMesgQueue.h -------------------------------------------------------------------------------- /Source/OSHLE/OSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/OSTask.h -------------------------------------------------------------------------------- /Source/OSHLE/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch.cpp -------------------------------------------------------------------------------- /Source/OSHLE/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch.h -------------------------------------------------------------------------------- /Source/OSHLE/patch_ai_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_ai_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_cache_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_cache_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_eeprom_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_eeprom_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_gu_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_gu_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_math_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_math_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_mesg_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_mesg_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_pi_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_pi_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_regs_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_regs_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_si_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_si_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_sp_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_sp_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_symbols.h -------------------------------------------------------------------------------- /Source/OSHLE/patch_symbols.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_symbols.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_thread_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_thread_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_timer_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_timer_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_tlb_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_tlb_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_util_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_util_hle.inl -------------------------------------------------------------------------------- /Source/OSHLE/patch_vi_hle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/OSHLE/patch_vi_hle.inl -------------------------------------------------------------------------------- /Source/RomFile/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/CMakeLists.txt -------------------------------------------------------------------------------- /Source/RomFile/ROMBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/ROMBuffer.cpp -------------------------------------------------------------------------------- /Source/RomFile/ROMBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/ROMBuffer.h -------------------------------------------------------------------------------- /Source/RomFile/RomFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFile.cpp -------------------------------------------------------------------------------- /Source/RomFile/RomFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFile.h -------------------------------------------------------------------------------- /Source/RomFile/RomFileCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFileCache.cpp -------------------------------------------------------------------------------- /Source/RomFile/RomFileCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFileCache.h -------------------------------------------------------------------------------- /Source/RomFile/RomFileCompressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFileCompressed.cpp -------------------------------------------------------------------------------- /Source/RomFile/RomFileCompressed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFileCompressed.h -------------------------------------------------------------------------------- /Source/RomFile/RomFileMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFileMemory.cpp -------------------------------------------------------------------------------- /Source/RomFile/RomFileMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFileMemory.h -------------------------------------------------------------------------------- /Source/RomFile/RomFileUncompressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFileUncompressed.cpp -------------------------------------------------------------------------------- /Source/RomFile/RomFileUncompressed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomFileUncompressed.h -------------------------------------------------------------------------------- /Source/RomFile/RomSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomSettings.cpp -------------------------------------------------------------------------------- /Source/RomFile/RomSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/RomFile/RomSettings.h -------------------------------------------------------------------------------- /Source/SysCTR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysCTR/Debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Debug/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysCTR/Debug/DBGConsoleCTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Debug/DBGConsoleCTR.cpp -------------------------------------------------------------------------------- /Source/SysCTR/Debug/DaedalusAssertCTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Debug/DaedalusAssertCTR.cpp -------------------------------------------------------------------------------- /Source/SysCTR/Graphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Graphics/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysCTR/Graphics/GraphicsContextCTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Graphics/GraphicsContextCTR.cpp -------------------------------------------------------------------------------- /Source/SysCTR/Graphics/NativeTextureCTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Graphics/NativeTextureCTR.cpp -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/BlendModes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/BlendModes.cpp -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/BlendModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/BlendModes.h -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/ColourAdjuster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/ColourAdjuster.cpp -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/ColourAdjuster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/ColourAdjuster.h -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/Combiner/BlendConstant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/Combiner/BlendConstant.cpp -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/Combiner/BlendConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/Combiner/BlendConstant.h -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/Combiner/CombinerExpression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/Combiner/CombinerExpression.cpp -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/Combiner/CombinerExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/Combiner/CombinerExpression.h -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/Combiner/CombinerInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/Combiner/CombinerInput.h -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/Combiner/CombinerTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/Combiner/CombinerTree.cpp -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/Combiner/CombinerTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/Combiner/CombinerTree.h -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/Combiner/RenderSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/Combiner/RenderSettings.cpp -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/Combiner/RenderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/Combiner/RenderSettings.h -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/GraphicsPluginCTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/GraphicsPluginCTR.cpp -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/RendererCTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/RendererCTR.cpp -------------------------------------------------------------------------------- /Source/SysCTR/HLEGraphics/RendererCTR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/HLEGraphics/RendererCTR.h -------------------------------------------------------------------------------- /Source/SysCTR/Resources/audio_silent.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Resources/audio_silent.wav -------------------------------------------------------------------------------- /Source/SysCTR/Resources/banner.bnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Resources/banner.bnr -------------------------------------------------------------------------------- /Source/SysCTR/Resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Resources/banner.png -------------------------------------------------------------------------------- /Source/SysCTR/Resources/daedalus.smdh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Resources/daedalus.smdh -------------------------------------------------------------------------------- /Source/SysCTR/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Resources/icon.png -------------------------------------------------------------------------------- /Source/SysCTR/Resources/romfs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Resources/romfs.bin -------------------------------------------------------------------------------- /Source/SysCTR/Resources/romfs/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Resources/romfs/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Source/SysCTR/Resources/template.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Resources/template.rsf -------------------------------------------------------------------------------- /Source/SysCTR/UI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/UI/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysCTR/UI/InGameMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/UI/InGameMenu.cpp -------------------------------------------------------------------------------- /Source/SysCTR/UI/InGameMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/UI/InGameMenu.h -------------------------------------------------------------------------------- /Source/SysCTR/UI/RomSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/UI/RomSelector.cpp -------------------------------------------------------------------------------- /Source/SysCTR/UI/RomSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/UI/RomSelector.h -------------------------------------------------------------------------------- /Source/SysCTR/UI/UserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/UI/UserInterface.cpp -------------------------------------------------------------------------------- /Source/SysCTR/UI/UserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/UI/UserInterface.h -------------------------------------------------------------------------------- /Source/SysCTR/Utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Utility/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysCTR/Utility/CacheCTR.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Utility/CacheCTR.S -------------------------------------------------------------------------------- /Source/SysCTR/Utility/MemoryCTR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Utility/MemoryCTR.c -------------------------------------------------------------------------------- /Source/SysCTR/Utility/MemoryCTR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/Utility/MemoryCTR.h -------------------------------------------------------------------------------- /Source/SysCTR/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysCTR/main.cpp -------------------------------------------------------------------------------- /Source/SysGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysGL/GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/GL.h -------------------------------------------------------------------------------- /Source/SysGL/Graphics/DrawTextSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/Graphics/DrawTextSDL.cpp -------------------------------------------------------------------------------- /Source/SysGL/Graphics/GraphicsContextGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/Graphics/GraphicsContextGL.cpp -------------------------------------------------------------------------------- /Source/SysGL/Graphics/NativeTextureGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/Graphics/NativeTextureGL.cpp -------------------------------------------------------------------------------- /Source/SysGL/Graphics/UIContextGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/Graphics/UIContextGL.cpp -------------------------------------------------------------------------------- /Source/SysGL/HLEGraphics/GraphicsPluginGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/HLEGraphics/GraphicsPluginGL.cpp -------------------------------------------------------------------------------- /Source/SysGL/HLEGraphics/RendererGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/HLEGraphics/RendererGL.cpp -------------------------------------------------------------------------------- /Source/SysGL/HLEGraphics/RendererGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/HLEGraphics/RendererGL.h -------------------------------------------------------------------------------- /Source/SysGL/HLEGraphics/n64.psh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGL/HLEGraphics/n64.psh -------------------------------------------------------------------------------- /Source/SysGLES/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysGLES/GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/GL.h -------------------------------------------------------------------------------- /Source/SysGLES/Graphics/DrawTextSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/Graphics/DrawTextSDL.cpp -------------------------------------------------------------------------------- /Source/SysGLES/Graphics/GraphicsContextGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/Graphics/GraphicsContextGL.cpp -------------------------------------------------------------------------------- /Source/SysGLES/Graphics/NativeTextureGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/Graphics/NativeTextureGL.cpp -------------------------------------------------------------------------------- /Source/SysGLES/Graphics/UIContextGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/Graphics/UIContextGL.cpp -------------------------------------------------------------------------------- /Source/SysGLES/HLEGraphics/GraphicsPluginGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/HLEGraphics/GraphicsPluginGL.cpp -------------------------------------------------------------------------------- /Source/SysGLES/HLEGraphics/RendererGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/HLEGraphics/RendererGL.cpp -------------------------------------------------------------------------------- /Source/SysGLES/HLEGraphics/RendererGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/HLEGraphics/RendererGL.h -------------------------------------------------------------------------------- /Source/SysGLES/HLEGraphics/n64.psh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysGLES/HLEGraphics/n64.psh -------------------------------------------------------------------------------- /Source/SysPSP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPSP/Debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Debug/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPSP/Debug/DBGConsolePSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Debug/DBGConsolePSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Debug/DaedalusAssertPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Debug/DaedalusAssertPSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Graphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Graphics/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPSP/Graphics/DrawTextPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Graphics/DrawTextPSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Graphics/GraphicsContextPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Graphics/GraphicsContextPSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Graphics/NativeTexturePSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Graphics/NativeTexturePSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Graphics/UIContextPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Graphics/UIContextPSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Graphics/VideoMemoryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Graphics/VideoMemoryManager.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Graphics/VideoMemoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Graphics/VideoMemoryManager.h -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/BlendModes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/BlendModes.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/BlendModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/BlendModes.h -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Blender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Blender.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/ColourAdjuster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/ColourAdjuster.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/ColourAdjuster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/ColourAdjuster.h -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Combiner/BlendConstant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Combiner/BlendConstant.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Combiner/BlendConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Combiner/BlendConstant.h -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Combiner/CombinerExpression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Combiner/CombinerExpression.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Combiner/CombinerExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Combiner/CombinerExpression.h -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Combiner/CombinerInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Combiner/CombinerInput.h -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Combiner/CombinerTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Combiner/CombinerTree.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Combiner/CombinerTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Combiner/CombinerTree.h -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Combiner/RenderSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Combiner/RenderSettings.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/Combiner/RenderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/Combiner/RenderSettings.h -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/ConvertVertices.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/ConvertVertices.S -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/DisplayListDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/DisplayListDebugger.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/GraphicsPluginPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/GraphicsPluginPSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/RendererPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/RendererPSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/RendererPSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/RendererPSP.h -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/TnLVFPU.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/TnLVFPU.S -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/TransformWithColour.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/TransformWithColour.S -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/TransformWithLighting.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/TransformWithLighting.S -------------------------------------------------------------------------------- /Source/SysPSP/HLEGraphics/VectorClipping.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/HLEGraphics/VectorClipping.S -------------------------------------------------------------------------------- /Source/SysPSP/Math/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Math/Math.h -------------------------------------------------------------------------------- /Source/SysPSP/PRX/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPSP/PRX/DveMgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/DveMgr/Makefile -------------------------------------------------------------------------------- /Source/SysPSP/PRX/DveMgr/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/DveMgr/exports.c -------------------------------------------------------------------------------- /Source/SysPSP/PRX/DveMgr/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/DveMgr/exports.exp -------------------------------------------------------------------------------- /Source/SysPSP/PRX/DveMgr/libpspdve_driver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/DveMgr/libpspdve_driver.a -------------------------------------------------------------------------------- /Source/SysPSP/PRX/DveMgr/libpspimpose_driver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/DveMgr/libpspimpose_driver.a -------------------------------------------------------------------------------- /Source/SysPSP/PRX/DveMgr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/DveMgr/main.c -------------------------------------------------------------------------------- /Source/SysPSP/PRX/DveMgr/pspDveManager.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/DveMgr/pspDveManager.S -------------------------------------------------------------------------------- /Source/SysPSP/PRX/DveMgr/pspDveManager_driver.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/DveMgr/pspDveManager_driver.S -------------------------------------------------------------------------------- /Source/SysPSP/PRX/ExceptionHandler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/ExceptionHandler/Makefile -------------------------------------------------------------------------------- /Source/SysPSP/PRX/ExceptionHandler/exception_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/ExceptionHandler/exception_asm.S -------------------------------------------------------------------------------- /Source/SysPSP/PRX/ExceptionHandler/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/ExceptionHandler/exports.exp -------------------------------------------------------------------------------- /Source/SysPSP/PRX/ExceptionHandler/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/ExceptionHandler/main.c -------------------------------------------------------------------------------- /Source/SysPSP/PRX/MediaEngine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/MediaEngine/Makefile -------------------------------------------------------------------------------- /Source/SysPSP/PRX/MediaEngine/MediaEngine.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/MediaEngine/MediaEngine.S -------------------------------------------------------------------------------- /Source/SysPSP/PRX/MediaEngine/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/MediaEngine/exports.exp -------------------------------------------------------------------------------- /Source/SysPSP/PRX/MediaEngine/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/MediaEngine/main.c -------------------------------------------------------------------------------- /Source/SysPSP/PRX/MediaEngine/me.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/MediaEngine/me.c -------------------------------------------------------------------------------- /Source/SysPSP/PRX/MediaEngine/me.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/MediaEngine/me.h -------------------------------------------------------------------------------- /Source/SysPSP/PRX/MediaEngine/me_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/PRX/MediaEngine/me_stub.S -------------------------------------------------------------------------------- /Source/SysPSP/Resources/eboot_icons/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Resources/eboot_icons/icon0.png -------------------------------------------------------------------------------- /Source/SysPSP/Resources/eboot_icons/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Resources/eboot_icons/pic1.png -------------------------------------------------------------------------------- /Source/SysPSP/Utility/AtomicPrimitives.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/AtomicPrimitives.S -------------------------------------------------------------------------------- /Source/SysPSP/Utility/BatteryPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/BatteryPSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPSP/Utility/CacheUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/CacheUtil.h -------------------------------------------------------------------------------- /Source/SysPSP/Utility/DebugMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/DebugMemory.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Utility/DisableFPUExceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/DisableFPUExceptions.S -------------------------------------------------------------------------------- /Source/SysPSP/Utility/FastMemcpyPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/FastMemcpyPSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Utility/ModulePSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/ModulePSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Utility/ModulePSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/ModulePSP.h -------------------------------------------------------------------------------- /Source/SysPSP/Utility/VolatileMemPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/VolatileMemPSP.cpp -------------------------------------------------------------------------------- /Source/SysPSP/Utility/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/Utility/exception.cpp -------------------------------------------------------------------------------- /Source/SysPSP/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPSP/main.cpp -------------------------------------------------------------------------------- /Source/SysPosix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPosix/Debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPosix/Debug/DaedalusAssertPosix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/DaedalusAssertPosix.cpp -------------------------------------------------------------------------------- /Source/SysPosix/Debug/DebugConsolePosix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/DebugConsolePosix.cpp -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/css/bootstrap.css -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/css/bootstrap.min.css -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/css/dldebugger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/css/dldebugger.css -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/html/dldebugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/html/dldebugger.html -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/js/bootstrap.js -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/js/bootstrap.min.js -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/js/dldebugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/js/dldebugger.js -------------------------------------------------------------------------------- /Source/SysPosix/Debug/Web/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/Web/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /Source/SysPosix/Debug/WebDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/WebDebug.cpp -------------------------------------------------------------------------------- /Source/SysPosix/Debug/WebDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/WebDebug.h -------------------------------------------------------------------------------- /Source/SysPosix/Debug/WebDebugTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/WebDebugTemplate.cpp -------------------------------------------------------------------------------- /Source/SysPosix/Debug/WebDebugTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Debug/WebDebugTemplate.h -------------------------------------------------------------------------------- /Source/SysPosix/HLEGraphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/HLEGraphics/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPosix/HLEGraphics/DisplayListDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/HLEGraphics/DisplayListDebugger.cpp -------------------------------------------------------------------------------- /Source/SysPosix/HLEGraphics/TextureCacheWebDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/HLEGraphics/TextureCacheWebDebug.cpp -------------------------------------------------------------------------------- /Source/SysPosix/HLEGraphics/TextureCacheWebDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/HLEGraphics/TextureCacheWebDebug.h -------------------------------------------------------------------------------- /Source/SysPosix/Utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Utility/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysPosix/Utility/CondPosix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/Utility/CondPosix.cpp -------------------------------------------------------------------------------- /Source/SysPosix/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysPosix/main.cpp -------------------------------------------------------------------------------- /Source/SysW32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysW32/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysW32/Debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysW32/Debug/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysW32/Debug/DaedalusAssertW32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysW32/Debug/DaedalusAssertW32.cpp -------------------------------------------------------------------------------- /Source/SysW32/Debug/DebugConsoleW32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysW32/Debug/DebugConsoleW32.cpp -------------------------------------------------------------------------------- /Source/SysW32/Utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysW32/Utility/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SysW32/Utility/CondW32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysW32/Utility/CondW32.cpp -------------------------------------------------------------------------------- /Source/SysW32/Utility/DISASM86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/SysW32/Utility/DISASM86.cpp -------------------------------------------------------------------------------- /Source/System/AtomicPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/AtomicPrimitives.h -------------------------------------------------------------------------------- /Source/System/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/CMakeLists.txt -------------------------------------------------------------------------------- /Source/System/CompressedStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/CompressedStream.cpp -------------------------------------------------------------------------------- /Source/System/CompressedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/CompressedStream.h -------------------------------------------------------------------------------- /Source/System/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Condition.h -------------------------------------------------------------------------------- /Source/System/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Endian.h -------------------------------------------------------------------------------- /Source/System/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Mutex.h -------------------------------------------------------------------------------- /Source/System/SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/SpinLock.h -------------------------------------------------------------------------------- /Source/System/SystemInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/SystemInit.cpp -------------------------------------------------------------------------------- /Source/System/SystemInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/SystemInit.h -------------------------------------------------------------------------------- /Source/System/Thread/CTR/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Thread/CTR/Thread.cpp -------------------------------------------------------------------------------- /Source/System/Thread/PSP/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Thread/PSP/Thread.cpp -------------------------------------------------------------------------------- /Source/System/Thread/Posix/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Thread/Posix/Thread.cpp -------------------------------------------------------------------------------- /Source/System/Thread/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Thread/Thread.h -------------------------------------------------------------------------------- /Source/System/Timing/CTR/Timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Timing/CTR/Timing.cpp -------------------------------------------------------------------------------- /Source/System/Timing/PSP/Timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Timing/PSP/Timing.cpp -------------------------------------------------------------------------------- /Source/System/Timing/Posix/Timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Timing/Posix/Timing.cpp -------------------------------------------------------------------------------- /Source/System/Timing/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Timing/Timing.h -------------------------------------------------------------------------------- /Source/System/Timing/Windows/Timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/System/Timing/Windows/Timing.cpp -------------------------------------------------------------------------------- /Source/UI/AboutComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/AboutComponent.cpp -------------------------------------------------------------------------------- /Source/UI/AboutComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/AboutComponent.h -------------------------------------------------------------------------------- /Source/UI/AdjustDeadzoneScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/AdjustDeadzoneScreen.cpp -------------------------------------------------------------------------------- /Source/UI/AdjustDeadzoneScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/AdjustDeadzoneScreen.h -------------------------------------------------------------------------------- /Source/UI/AdvancedOptionsScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/AdvancedOptionsScreen.cpp -------------------------------------------------------------------------------- /Source/UI/AdvancedOptionsScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/AdvancedOptionsScreen.h -------------------------------------------------------------------------------- /Source/UI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/CMakeLists.txt -------------------------------------------------------------------------------- /Source/UI/CheatOptionsScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/CheatOptionsScreen.cpp -------------------------------------------------------------------------------- /Source/UI/CheatOptionsScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/CheatOptionsScreen.h -------------------------------------------------------------------------------- /Source/UI/ColourPulser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/ColourPulser.cpp -------------------------------------------------------------------------------- /Source/UI/ColourPulser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/ColourPulser.h -------------------------------------------------------------------------------- /Source/UI/Dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/Dialogs.cpp -------------------------------------------------------------------------------- /Source/UI/Dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/Dialogs.h -------------------------------------------------------------------------------- /Source/UI/DrawText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/DrawText.h -------------------------------------------------------------------------------- /Source/UI/DrawTextUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/DrawTextUtilities.cpp -------------------------------------------------------------------------------- /Source/UI/DrawTextUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/DrawTextUtilities.h -------------------------------------------------------------------------------- /Source/UI/GlobalSettingsComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/GlobalSettingsComponent.cpp -------------------------------------------------------------------------------- /Source/UI/GlobalSettingsComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/GlobalSettingsComponent.h -------------------------------------------------------------------------------- /Source/UI/MainMenuScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/MainMenuScreen.cpp -------------------------------------------------------------------------------- /Source/UI/MainMenuScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/MainMenuScreen.h -------------------------------------------------------------------------------- /Source/UI/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/Menu.h -------------------------------------------------------------------------------- /Source/UI/PauseOptionsComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/PauseOptionsComponent.cpp -------------------------------------------------------------------------------- /Source/UI/PauseOptionsComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/PauseOptionsComponent.h -------------------------------------------------------------------------------- /Source/UI/PauseScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/PauseScreen.cpp -------------------------------------------------------------------------------- /Source/UI/PauseScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/PauseScreen.h -------------------------------------------------------------------------------- /Source/UI/RomPreferencesScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/RomPreferencesScreen.cpp -------------------------------------------------------------------------------- /Source/UI/RomPreferencesScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/RomPreferencesScreen.h -------------------------------------------------------------------------------- /Source/UI/RomSelectorComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/RomSelectorComponent.cpp -------------------------------------------------------------------------------- /Source/UI/RomSelectorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/RomSelectorComponent.h -------------------------------------------------------------------------------- /Source/UI/SavestateSelectorComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/SavestateSelectorComponent.cpp -------------------------------------------------------------------------------- /Source/UI/SavestateSelectorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/SavestateSelectorComponent.h -------------------------------------------------------------------------------- /Source/UI/SelectedRomComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/SelectedRomComponent.cpp -------------------------------------------------------------------------------- /Source/UI/SelectedRomComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/SelectedRomComponent.h -------------------------------------------------------------------------------- /Source/UI/SplashScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/SplashScreen.cpp -------------------------------------------------------------------------------- /Source/UI/SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/SplashScreen.h -------------------------------------------------------------------------------- /Source/UI/UIAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UIAlignment.h -------------------------------------------------------------------------------- /Source/UI/UICommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UICommand.cpp -------------------------------------------------------------------------------- /Source/UI/UICommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UICommand.h -------------------------------------------------------------------------------- /Source/UI/UIComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UIComponent.cpp -------------------------------------------------------------------------------- /Source/UI/UIComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UIComponent.h -------------------------------------------------------------------------------- /Source/UI/UIContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UIContext.h -------------------------------------------------------------------------------- /Source/UI/UIElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UIElement.cpp -------------------------------------------------------------------------------- /Source/UI/UIElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UIElement.h -------------------------------------------------------------------------------- /Source/UI/UIScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UIScreen.cpp -------------------------------------------------------------------------------- /Source/UI/UIScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UIScreen.h -------------------------------------------------------------------------------- /Source/UI/UISetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UISetting.cpp -------------------------------------------------------------------------------- /Source/UI/UISetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UISetting.h -------------------------------------------------------------------------------- /Source/UI/UISpacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/UI/UISpacer.h -------------------------------------------------------------------------------- /Source/Ultra/ultra_R4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Ultra/ultra_R4300.h -------------------------------------------------------------------------------- /Source/Ultra/ultra_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Ultra/ultra_abi.h -------------------------------------------------------------------------------- /Source/Ultra/ultra_gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Ultra/ultra_gbi.h -------------------------------------------------------------------------------- /Source/Ultra/ultra_mbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Ultra/ultra_mbi.h -------------------------------------------------------------------------------- /Source/Ultra/ultra_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Ultra/ultra_os.h -------------------------------------------------------------------------------- /Source/Ultra/ultra_rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Ultra/ultra_rcp.h -------------------------------------------------------------------------------- /Source/Ultra/ultra_sptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Ultra/ultra_sptask.h -------------------------------------------------------------------------------- /Source/Utility/BatchTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/BatchTest.cpp -------------------------------------------------------------------------------- /Source/Utility/BatchTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/BatchTest.h -------------------------------------------------------------------------------- /Source/Utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Utility/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/CRC.cpp -------------------------------------------------------------------------------- /Source/Utility/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/CRC.h -------------------------------------------------------------------------------- /Source/Utility/FastMemcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/FastMemcpy.cpp -------------------------------------------------------------------------------- /Source/Utility/FastMemcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/FastMemcpy.h -------------------------------------------------------------------------------- /Source/Utility/FastMemcpy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/FastMemcpy_test.cpp -------------------------------------------------------------------------------- /Source/Utility/FramerateLimiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/FramerateLimiter.cpp -------------------------------------------------------------------------------- /Source/Utility/FramerateLimiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/FramerateLimiter.h -------------------------------------------------------------------------------- /Source/Utility/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Hash.cpp -------------------------------------------------------------------------------- /Source/Utility/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Hash.h -------------------------------------------------------------------------------- /Source/Utility/IniFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/IniFile.cpp -------------------------------------------------------------------------------- /Source/Utility/IniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/IniFile.h -------------------------------------------------------------------------------- /Source/Utility/MathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/MathUtil.h -------------------------------------------------------------------------------- /Source/Utility/MemoryHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/MemoryHeap.cpp -------------------------------------------------------------------------------- /Source/Utility/MemoryHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/MemoryHeap.h -------------------------------------------------------------------------------- /Source/Utility/MemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/MemoryPool.cpp -------------------------------------------------------------------------------- /Source/Utility/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/MemoryPool.h -------------------------------------------------------------------------------- /Source/Utility/Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Paths.cpp -------------------------------------------------------------------------------- /Source/Utility/Paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Paths.h -------------------------------------------------------------------------------- /Source/Utility/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Profiler.cpp -------------------------------------------------------------------------------- /Source/Utility/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Profiler.h -------------------------------------------------------------------------------- /Source/Utility/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Stream.cpp -------------------------------------------------------------------------------- /Source/Utility/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Stream.h -------------------------------------------------------------------------------- /Source/Utility/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/String.h -------------------------------------------------------------------------------- /Source/Utility/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/StringUtil.cpp -------------------------------------------------------------------------------- /Source/Utility/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/StringUtil.h -------------------------------------------------------------------------------- /Source/Utility/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Timer.cpp -------------------------------------------------------------------------------- /Source/Utility/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Timer.h -------------------------------------------------------------------------------- /Source/Utility/Translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Translate.cpp -------------------------------------------------------------------------------- /Source/Utility/Translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/Translate.h -------------------------------------------------------------------------------- /Source/Utility/VolatileMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/Utility/VolatileMem.h -------------------------------------------------------------------------------- /Source/third_party/webby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/third_party/webby/LICENSE -------------------------------------------------------------------------------- /Source/third_party/webby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/third_party/webby/README.md -------------------------------------------------------------------------------- /Source/third_party/webby/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/third_party/webby/demo.c -------------------------------------------------------------------------------- /Source/third_party/webby/tundra.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/third_party/webby/tundra.lua -------------------------------------------------------------------------------- /Source/third_party/webby/webby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/third_party/webby/webby.c -------------------------------------------------------------------------------- /Source/third_party/webby/webby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/third_party/webby/webby.h -------------------------------------------------------------------------------- /Source/third_party/webby/webby_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/third_party/webby/webby_unix.h -------------------------------------------------------------------------------- /Source/third_party/webby/webby_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Source/third_party/webby/webby_win32.h -------------------------------------------------------------------------------- /Tools/roms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/Tools/roms.py -------------------------------------------------------------------------------- /checks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/checks.json -------------------------------------------------------------------------------- /copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/copying.txt -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaedalusX64/daedalus/HEAD/vcpkg.json --------------------------------------------------------------------------------