jos/user/faultread.c
Anish Athalye a9d7717cc4 Lab 3
2018-09-25 12:22:51 -04:00

11 lines
178 B
C

// buggy program - faults with a read from location zero
#include <inc/lib.h>
void
umain(int argc, char **argv)
{
cprintf("I read %08x from location 0!\n", *(unsigned*)0);
}