2025-05-07 20:54:01 +02:00
|
|
|
#include "stdafx.h"
|
2025-04-28 21:05:31 +02:00
|
|
|
#include "rpcs3.h"
|
|
|
|
|
|
2025-05-07 20:54:01 +02:00
|
|
|
LOG_CHANNEL(sys_log, "SYS");
|
|
|
|
|
|
2025-04-28 21:05:31 +02:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
|
{
|
2025-05-07 20:54:01 +02:00
|
|
|
const int exit_code = run_rpcs3(argc, argv);
|
|
|
|
|
sys_log.notice("RPCS3 terminated with exit code %d", exit_code);
|
|
|
|
|
return exit_code;
|
2025-04-28 21:05:31 +02:00
|
|
|
}
|