1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-11-19 16:21:21 +00:00
Files
AROS-v0/developer/debug/test/exec/crashtest_illegalins.c
2025-11-09 17:01:04 +01:00

23 lines
384 B
C

/*
Copyright (C) 2025, The AROS Development Team. All rights reserved.
*/
#include <exec/types.h>
#include <proto/dos.h>
void crashfunc()
{
void (*bad)() = (void(*)())"abcd";
PutStr("Before crash\n");
bad();
PutStr("After crash\n");
}
int main(int argc, char **argv)
{
PutStr("main() enter\n");
crashfunc();
PutStr("main() exit\n");
return 0;
}