summaryrefslogtreecommitdiff
path: root/tools/shc/shellcode.c
blob: e48b51dfa636fb4af5b2445778a8e85cb7961bd2 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 *  native C shellcode
 */

typedef unsigned int uint32_t;

void shellcode(void) {
	*(uint32_t*)0x41414141 = 0x42424242;
//	__builtin_unreachable();
}