diff options
Diffstat (limited to 'src/app/donothing/main.cc')
-rw-r--r-- | src/app/donothing/main.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/app/donothing/main.cc b/src/app/donothing/main.cc new file mode 100644 index 0000000..242de6f --- /dev/null +++ b/src/app/donothing/main.cc @@ -0,0 +1,18 @@ +#include "arch.h" +#include "driver/gpio.h" +#include "driver/stdout.h" +#include "driver/uptime.h" + +int main(void) +{ + arch.setup(); + gpio.setup(); + kout.setup(); + + kout << "Hello, World!" << endl; + kout << "Naptime." << endl; + + arch.idle(); + + return 0; +} |