]> git.dujemihanovic.xyz Git - nameless-os.git/blobdiff - kernel/arch/x86/tty/tty.c
Also compile kernel as ELF for easier disassembly
[nameless-os.git] / kernel / arch / x86 / tty / tty.c
index c1bb0a5242e53586d53d39d4b71a11b0c7f85e03..d3ef87b1d862290002347932aaa03c8b02f2e4b0 100644 (file)
@@ -1,7 +1,7 @@
 #define VGA_WIDTH 80
 #define VGA_HEIGHT 25
 
-char *video_memory = (char *) 0xB8000; /* VGA VRAM starts at 0xB8000 */
+volatile char *video_memory = (char *) 0xB8000; /* VGA VRAM starts at 0xB8000 */
 
 static int cursor_x = 0;
 static int cursor_y = 0;