Loading...
1
2
3
4
5
6
7

__attribute__((section(("__RWX, __data"))))
int data = 1;

int _start() {
	return data;
}