mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 09:37:56 -05:00
Loader: Added support for loading raw BIN executables.
- Useful for debugging homebrew Qt: Updated GUI to support loading .bin files.
This commit is contained in:
@ -9,6 +9,7 @@
|
||||
#include "core/loader/elf.h"
|
||||
#include "core/loader/ncch.h"
|
||||
#include "core/hle/kernel/archive.h"
|
||||
#include "core/mem_map.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@ -39,6 +40,9 @@ FileType IdentifyFile(const std::string &filename) {
|
||||
else if (!strcasecmp(extension.c_str(), ".cci")) {
|
||||
return FileType::CCI; // TODO(bunnei): Do some filetype checking :p
|
||||
}
|
||||
else if (!strcasecmp(extension.c_str(), ".bin")) {
|
||||
return FileType::BIN; // TODO(bunnei): Do some filetype checking :p
|
||||
}
|
||||
return FileType::Unknown;
|
||||
}
|
||||
|
||||
@ -69,6 +73,22 @@ ResultStatus LoadFile(const std::string& filename) {
|
||||
break;
|
||||
}
|
||||
|
||||
// Raw BIN file format...
|
||||
case FileType::BIN:
|
||||
{
|
||||
INFO_LOG(LOADER, "Loading BIN file %s...", filename.c_str());
|
||||
|
||||
File::IOFile file(filename, "rb");
|
||||
|
||||
if (file.IsOpen()) {
|
||||
file.ReadBytes(Memory::GetPointer(Memory::EXEFS_CODE_VADDR), (size_t)file.GetSize());
|
||||
Kernel::LoadExec(Memory::EXEFS_CODE_VADDR);
|
||||
} else {
|
||||
return ResultStatus::Error;
|
||||
}
|
||||
return ResultStatus::Success;
|
||||
}
|
||||
|
||||
// Error occurred durring IdentifyFile...
|
||||
case FileType::Error:
|
||||
|
||||
|
Reference in New Issue
Block a user