Initial commit

This commit is contained in:
InoriRus
2021-12-01 19:29:27 +10:00
parent b1e7dcdc5d
commit 43f49c8763
1843 changed files with 1111694 additions and 0 deletions
+40
View File
@@ -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();
+37
View File
@@ -0,0 +1,37 @@
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/ps5/tests/01_Hello/Debug', '/app0');
kyty_load_elf('/app0/main.elf');
kyty_load_elf('/app0/sce_module/libc.prx');
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_dbg_dump('_elf/');
kyty_execute();