blob: 1edac8433d263b7efad3d1561c74e7a4f590f14e [file] [log] [blame] [edit]
// evil hello world -- kernel pointer passed to kernel
// kernel should destroy user process in response
#include <parlib.h>
int main(int argc, char** argv)
{
while(1);
// try to print the kernel entry point as a string! mua ha ha!
sys_cputs((char*SAFE)TC(0xc0100020), 100);
return 0;
}