jos/user/faultwritekernel.c

11 lines
151 B
C
Raw Normal View History

2018-09-25 09:22:51 -07:00
// buggy program - faults with a write to a kernel location
#include <inc/lib.h>
void
umain(int argc, char **argv)
{
*(unsigned*)0xf0100000 = 0;
}