Add ability to disable debug printing and gdb symbols

This commit is contained in:
2017-12-07 12:59:01 +01:00
parent a9831c1038
commit 572bee19cc
3 changed files with 11 additions and 2 deletions

View File

@@ -8,8 +8,8 @@ void kmain()
serial_init(PORT_COM1);
vga_init();
debug_printf("Hello from debug printing function!\n");
debug_printf("A number:%d\n", 12345);
debug("Hello from debug printing function!\n");
debug("A number:%d\n", 12345);
for(;;);
}