aboutsummaryrefslogtreecommitdiff
path: root/platform/sifive-vc707-devkit.c
blob: bd27861db6226b51a5942f8fdb1787939c12839f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#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;
}