Luna/apps/src/crash.c
apio 2c813f5901 apps: Add more simple apps
Now that we can start them at will from the command line, bring them on!!
2022-10-19 21:11:38 +02:00

5 lines
61 B
C

int main()
{
int* ptr = (int*)0xdeadbeef;
*ptr = 6;
}