- 论坛徽章:
- 0
|
#include <stdio.h>
char inc[] __attribute__((section(".text")))
= { 0x55,
0x89, 0xe5,
0xff, 0x45, 0x08,
0x8b, 0x45, 0x08,
0xc9,
0xc3
};
typedef int (*incr)(int);
int main()
{
int x = ((incr)inc)(0);
printf("b=%d\n", x);
return 0;
}
|
試試這個~~呵呵現學現賣 |
|