fernly: Initial commit

This is an initial commit of the code.  It just does prints "Hello, world!"
This commit is contained in:
Sean Cross 2014-06-12 12:48:10 +08:00
commit 685824f56e
12 changed files with 398 additions and 0 deletions

10
main.c Normal file
View file

@ -0,0 +1,10 @@
#include "serial.h"
int main(int argc, char **argv) {
while(1) {
int i;
uart_puts("Hello, world!\n");
for (i = 0; i < 0xf000; i++);
}
return 0;
}