You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm new to use CVA6.Following setup tutorial, I still can't find the way to run user-space applications.
I write a hello.c file, the content is as following:
#include<stdio.h>
int main(){
printf("hello, cva6!\n");
return 0;
}
I would appreciate if u could help me!Thanks!!
The text was updated successfully, but these errors were encountered:
But you will not see any output from printf. See #748, #1783.
You can generate a .vcd waveform file though, by doing export TRACE_FAST=1 before running the simulation. I found I needed to run make clean && make -C verif/sim clean_all for this to work.
I'm new to use CVA6.Following setup tutorial, I still can't find the way to run user-space applications.
I write a hello.c file, the content is as following:
#include<stdio.h>
int main(){
printf("hello, cva6!\n");
return 0;
}
I would appreciate if u could help me!Thanks!!
The text was updated successfully, but these errors were encountered: