mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-07 11:31:39 +12:00
feat: 3dsx loading
romFS works too, pretty neat
This commit is contained in:
parent
a18ed8778f
commit
29352d223b
8 changed files with 469 additions and 39 deletions
|
@ -24,6 +24,7 @@ enum class ROMType {
|
|||
ELF,
|
||||
NCSD,
|
||||
CXI,
|
||||
HB_3DSX,
|
||||
};
|
||||
|
||||
class Emulator {
|
||||
|
@ -99,6 +100,7 @@ class Emulator {
|
|||
|
||||
bool loadROM(const std::filesystem::path& path);
|
||||
bool loadNCSD(const std::filesystem::path& path, ROMType type);
|
||||
bool load3DSX(const std::filesystem::path& path);
|
||||
bool loadELF(const std::filesystem::path& path);
|
||||
bool loadELF(std::ifstream& file);
|
||||
void initGraphicsContext();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue