You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
#include "platform_interface.h"
|
|
|
|
static const char logo[] =
|
|
"\r\n"
|
|
" SIFIVE, INC.\r\n"
|
|
"\r\n"
|
|
" 5555555555555555555555555\r\n"
|
|
" 5555 5555\r\n"
|
|
" 5555 5555\r\n"
|
|
" 5555 5555\r\n"
|
|
" 5555 5555555555555555555555\r\n"
|
|
" 5555 555555555555555555555555\r\n"
|
|
" 5555 5555\r\n"
|
|
" 5555 5555\r\n"
|
|
" 5555 5555\r\n"
|
|
"5555555555555555555555555555 55555\r\n"
|
|
" 55555 555555555 55555\r\n"
|
|
" 55555 55555 55555\r\n"
|
|
" 55555 5 55555\r\n"
|
|
" 55555 55555\r\n"
|
|
" 55555 55555\r\n"
|
|
" 55555 55555\r\n"
|
|
" 55555 55555\r\n"
|
|
" 55555 55555\r\n"
|
|
" 555555555\r\n"
|
|
" 55555\r\n"
|
|
" 5\r\n"
|
|
"\r\n"
|
|
" SiFive RISC-V Coreplex\r\n";
|
|
|
|
const char *platform__get_logo(void)
|
|
{
|
|
return logo;
|
|
}
|
|
|
|
int platform__use_htif(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|