Add support for DATEL devices (GAMES n' MUSIC and Action Replay DS(i) Media Edition) (#64)

This commit is contained in:
Edoardo Lolletti
2025-12-28 20:25:22 +01:00
committed by GitHub
parent 7134c4b330
commit 26f27a4138
14 changed files with 744 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
#include "patches/platform/r4idsn/R4iDSNLoaderPlatform.h"
#include "patches/platform/supercard/SuperCardLoaderPlatform.h"
#include "patches/platform/ezp/EZPLoaderPlatform.h"
#include "patches/platform/datel/DatelLoaderPlatform.h"
#include "LoaderPlatformFactory.h"
LoaderPlatform* LoaderPlatformFactory::CreateLoaderPlatform() const
@@ -43,6 +44,8 @@ LoaderPlatform* LoaderPlatformFactory::CreateLoaderPlatform() const
return new SuperCardLoaderPlatform();
#elif defined(PICO_LOADER_TARGET_EZP)
return new EZPLoaderPlatform();
#elif defined(PICO_LOADER_TARGET_DATEL)
return new DatelLoaderPlatform();
#else
#error "No loader platform defined"
return nullptr;