aboutsummaryrefslogtreecommitdiff
path: root/funcjmp_ext.c
diff options
context:
space:
mode:
Diffstat (limited to 'funcjmp_ext.c')
-rw-r--r--funcjmp_ext.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/funcjmp_ext.c b/funcjmp_ext.c
index 70f757a..6174bec 100644
--- a/funcjmp_ext.c
+++ b/funcjmp_ext.c
@@ -28,11 +28,16 @@
int hookable(char *arg0, int arg1, int arg2)
{
asm("label:");
- INTEL_ASM("nop; nop; nop");
+ INTEL_ASM("nop; nop; nop; pop eax; pop eax");
asm("jmp end");
return 0;
}
+int testfkt(void *param)
+{
+ printf("Subroutine ..\n");
+}
+
int main(int argc, char **argv)
{
asm("push %0" : : "m" (hookable));
@@ -40,6 +45,8 @@ int main(int argc, char **argv)
asm("jmp label; \
end:");
//hookable(NULL, 0x8, 0x9);
+ printf("Hello World!\n");
+ testfkt(NULL);
return 66;
}