Files
chipyard/tests/hello.c
2023-04-06 17:36:13 -07:00

11 lines
228 B
C

#include <stdio.h>
#include "encoding.h"
#include "marchid.h"
int main(void) {
uint64_t marchid = read_csr(marchid);
const char* march = get_march(marchid);
printf("Hello world from core 0, a %s\n", march);
return 0;
}