Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
14d0b84bf94802a380045b37098b35f07461dffc
/
.
/
src
/
kernel
/
riscv32
/
main.c
blob: 960329217e39678273a75fdcd026c1de6b1e548d [
file
] [
log
] [
blame
]
swissChili
56cf817
2022-07-30 18:47:48 -0700
[
diff
] [
blame
]
1
#include
"kint.h"
2
#include
"serial.h"
3
4
void
kmain
(
uint
mhartid
)
5
{
6
init_serial
();
7
8
serial_write
(
"Hello from Bluejay!\r\n"
);
9
10
while
(
true
)
11
{
12
}
13
}