riscv-sandbox/helloworld/helloriscv.c

8 lines
81 B
C
Raw Normal View History

2019-01-09 17:54:18 +00:00
#include <stdio.h>
int main(void)
{
printf("Hello RISC-V");
return 0;
}