mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-01 12:46:01 +00:00
32 lines
791 B
C++
32 lines
791 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include <fmt/core.h>
|
|
#include "common/memory_patcher.h"
|
|
#include "emulator.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
if (argc == 1) {
|
|
fmt::print("Usage: {} <elf or eboot.bin path>\n", argv[0]);
|
|
return -1;
|
|
}
|
|
// check if eboot file exists
|
|
if (!std::filesystem::exists(argv[1])) {
|
|
fmt::print("Eboot.bin file not found\n");
|
|
return -1;
|
|
}
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
std::string curArg = argv[i];
|
|
if (curArg == "-p") {
|
|
std::string patchFile = argv[i + 1];
|
|
MemoryPatcher::patchFile = patchFile;
|
|
}
|
|
}
|
|
|
|
Core::Emulator emulator;
|
|
emulator.Run(argv[1]);
|
|
|
|
return 0;
|
|
}
|