summaryrefslogtreecommitdiff
path: root/src/cmd/crash.c
blob: a644eed318198d8331d10ea5799762f4150a35aa (plain)
1
2
3
4
5
6
7
int
main(void)
{
	// TODO flags to write into kernel mem / nonexistent mem, read/write
	volatile int *thing = (void*)0xF000BAAA;
	*thing = 1337;
}