blob: 091061edbb191b0f4f66e9ca05b252d818208b57 [file] [log] [blame]
// evil hello world -- kernel pointer passed to kernel
// kernel should destroy user process in response
#include <parlib/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*)0xc0100020, 100);
return 0;
}