aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vpi/vpi005/vpi1.c
blob: f2cccd28672ec3438eb975c39f0c44ee3e75d969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <vpi_user.h>

void my_startup()
{
  printf ("VPI lib 1\n");
}

void (*vlog_startup_routines[]) () =
{
  my_startup,
  0
};