mirror of
https://github.com/InoriRus/Kyty.git
synced 2026-08-28 05:06:40 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
|
||||
local cfg = {
|
||||
ScreenWidth = 1280;
|
||||
ScreenHeight = 720;
|
||||
Neo = true;
|
||||
VulkanValidationEnabled = true;
|
||||
ShaderValidationEnabled = true;
|
||||
ShaderOptimizationType = 'Performance'; -- None, Size, Performance
|
||||
ShaderLogDirection = 'File'; -- Silent, Console, File
|
||||
ShaderLogFolder = '_Shaders';
|
||||
CommandBufferDumpEnabled = true;
|
||||
CommandBufferDumpFolder = '_Buffers';
|
||||
PrintfDirection = 'Console'; -- Silent, Console, File
|
||||
PrintfOutputFile = '_kyty.txt';
|
||||
ProfilerDirection = 'None'; -- None, File, Network, FileAndNetwork
|
||||
ProfilerOutputFile = '_profile.prof';
|
||||
}
|
||||
|
||||
kyty_init(cfg);
|
||||
|
||||
kyty_mount('z:/dev/ps4/tests/01_Hello_8/', '/app0');
|
||||
|
||||
kyty_load_elf('/app0/main.elf');
|
||||
kyty_load_elf('/app0/sce_module/libc.prx', 0);
|
||||
kyty_load_elf('/app0/sce_module/libSceFios2.prx', 0);
|
||||
|
||||
kyty_load_symbols('libc_internal_1');
|
||||
kyty_load_symbols('libkernel_1');
|
||||
kyty_load_symbols('libVideoOut_1');
|
||||
kyty_load_symbols('libSysmodule_1');
|
||||
kyty_load_symbols('libDiscMap_1');
|
||||
kyty_load_symbols('libDebug_1');
|
||||
kyty_load_symbols('libGraphicsDriver_1');
|
||||
kyty_load_symbols('libUserService_1');
|
||||
kyty_load_symbols('libPad_1');
|
||||
|
||||
kyty_execute();
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user