riscv-sandbox/helloworld/helloriscv.c

8 lines
81 B
C

#include <stdio.h>
int main(void)
{
printf("Hello RISC-V");
return 0;
}