summaryrefslogtreecommitdiff
path: root/riscv/riscv_prelude.c
blob: c8145df4b3ad34da7f6890c8fbb3a372e6e55483 (plain)
1
2
3
4
5
6
7
8
#include "riscv_prelude.h"

unit print_string(sail_string prefix, sail_string msg)
{
  printf("%s%s\n", prefix, msg);
  return UNIT;
}