50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
#include <SDL3/SDL.h>
|
|
#include <cstdio>
|
|
#include <fmt/core.h>
|
|
#include "common/discord.h"
|
|
#include "common/types.h"
|
|
#include "common/log.h"
|
|
#include "common/singleton.h"
|
|
#include <core/PS4/HLE/Graphics/video_out.h>
|
|
#include <Util/config.h>
|
|
#include <Zydis/Zydis.h>
|
|
#include <emulator.h>
|
|
#include <cinttypes>
|
|
#include <thread>
|
|
#include "core/PS4/HLE/Libs.h"
|
|
#include "core/PS4/Linker.h"
|
|
#include "emuTimer.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
if (argc == 1) {
|
|
fmt::print("Usage: {} <elf or eboot.bin path>\n", argv[0]);
|
|
return -1;
|
|
}
|
|
Config::load("config.toml");
|
|
Common::Log::Init(true);
|
|
auto width = Config::getScreenWidth();
|
|
auto height = Config::getScreenHeight();
|
|
Emu::emuInit(width, height);
|
|
HLE::Libs::Graphics::VideoOut::videoOutInit(width, height);
|
|
Emulator::emuTimer::start();
|
|
|
|
// Argument 1 is the path of self file to boot
|
|
const char* const path = argv[1];
|
|
|
|
auto linker = Common::Singleton<Linker>::Instance();
|
|
HLE::Libs::Init_HLE_Libs(&linker->getHLESymbols());
|
|
linker->LoadModule(path);
|
|
std::jthread mainthread(
|
|
[linker](std::stop_token stop_token, void*) {
|
|
linker->Execute();
|
|
},
|
|
nullptr);
|
|
Discord::RPC discordRPC;
|
|
discordRPC.init();
|
|
discordRPC.update(Discord::RPCStatus::Idling, "");
|
|
Emu::emuRun();
|
|
|
|
discordRPC.stop();
|
|
return 0;
|
|
}
|