From e0807b8cddb07c2eb91dfe0b230d3121897b7a96 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Mon, 14 Apr 2025 17:00:41 +0200 Subject: [PATCH] moves to-/fromhost declaration into platform --- env/iss/platform.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/env/iss/platform.h b/env/iss/platform.h index 6c70be3..827fcc7 100644 --- a/env/iss/platform.h +++ b/env/iss/platform.h @@ -22,6 +22,9 @@ #include +extern volatile uintptr_t tohost; +extern volatile uintptr_t fromhost; + void init_pll(void); unsigned long get_cpu_freq(void); unsigned long get_timer_freq(void);