summaryrefslogtreecommitdiff
path: root/src/os/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/main.cc')
-rw-r--r--src/os/main.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/os/main.cc b/src/os/main.cc
index b080185..3e48053 100644
--- a/src/os/main.cc
+++ b/src/os/main.cc
@@ -1,5 +1,6 @@
#include "arch.h"
#include "driver/gpio.h"
+#include "driver/stdout.h"
/*
void check_command(unsigned char argc, char** argv)
@@ -93,7 +94,11 @@ int main(void)
{
arch.setup();
gpio.setup();
+ kout.setup();
+
gpio.led_on(0);
+ kout << "Hello, World!" << endl;
+
arch.idle_loop();
//uart_setup();