Detect ROM format

This commit is contained in:
wheremyfoodat 2022-10-01 03:22:20 +03:00
parent bef634114d
commit 7ba5c5a1bc
3 changed files with 19 additions and 5 deletions

View file

@ -50,7 +50,8 @@ public:
void run();
void runFrame();
bool loadELF(std::filesystem::path& path);
bool loadROM(const std::filesystem::path& path);
bool loadELF(const std::filesystem::path& path);
bool loadELF(std::ifstream& file);
void initGraphicsContext() { gpu.initGraphicsContext(); }
};