Some initial VM tests.
[pintos-anon] / grading / vm / pt-write-code.c
1 #include <stdio.h>
2
3 int
4 main (void) 
5 {
6   printf ("(pt-write-code) begin\n");
7   *(int *) main = 0;
8   printf ("(pt-write-code) end\n");
9   return 0;
10 }