We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cd3b78 commit bf04659Copy full SHA for bf04659
kernel/hook/source/main.c
@@ -89,9 +89,11 @@ int main(int argc, char **argv)
89
ps4KernelMemoryCopy((void *)hook2, h2, 128);
90
printf("ps4KernelMemoryCopy: %p %p\n", hook2, h2);
91
92
+ // We need to do this manually for now, since llvm code
93
+ // does not
94
s = 12;
- r = ps4KernelAssemblerInstructionSeek(a, &s);
- printf("ps4KernelAssemblerInstructionSeek: %i %zu\n", r, s);
95
+ r = ps4KernelMachineInstructionSeek(a, &s);
96
+ printf("ps4KernelMachineInstructionSeek: %i %zu\n", r, s);
97
98
r = ps4KernelFunctionIsHooked(a);
99
printf("ps4KernelFunctionIsHooked: %i %p\n", r, a);
0 commit comments