aboutsummaryrefslogtreecommitdiff
path: root/kernel.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel.c')
-rw-r--r--kernel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel.c b/kernel.c
index eb3e811..fc629e1 100644
--- a/kernel.c
+++ b/kernel.c
@@ -14,15 +14,15 @@ void kernel_main(uint32_t r0, uint32_t r1, uint32_t atags)
// When we attach screen session after loading kernel with socat
// we miss kernel's greeting... So we'll make the kernel wait for
// one char we're going to send from within screen
- // uart_getc();
+ uart_getc();
uart_puts("Hello, kernel World!\r\n");
// prints some info
demo_paging_support();
- // prints some info and switches to system mode
- demo_mode_to_system();
+ // prints some info
+ demo_current_mode();
// prints some info and sets upp translation table, turns on MMU
setup_flat_map();