1
0
Fork 0
This repository has been archived on 2022-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
riscv-opensbi-hello/src/kernel.c

9 lines
115 B
C

#include "opensbi.h"
void kinit(unsigned long long hartid, void* fdt) {
sbi_console_putchar('a');
while(1);
}