summaryrefslogtreecommitdiff
path: root/src/init/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/init/main.c')
-rw-r--r--src/init/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/init/main.c b/src/init/main.c
index e6188ac..ce1600c 100644
--- a/src/init/main.c
+++ b/src/init/main.c
@@ -6,5 +6,8 @@ int main() {
uint8_t *vga = (void*) 0xB8000;
for (int i = 0; i < 80 * 25; i++)
vga[(i << 1) + 1] = 0x4e;
- for (;;);
+
+ // try to mess with kernel memory
+ uint8_t *kernel = (void*) 0x100000;
+ *kernel = 0; // should segfault
}