aboutsummaryrefslogtreecommitdiff
path: root/c/riscv_platform_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/riscv_platform_impl.h')
-rw-r--r--c/riscv_platform_impl.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/c/riscv_platform_impl.h b/c/riscv_platform_impl.h
new file mode 100644
index 0000000..85e25c9
--- /dev/null
+++ b/c/riscv_platform_impl.h
@@ -0,0 +1,28 @@
+#pragma once
+
+#include <stdbool.h>
+#include <stdint.h>
+
+/* Settings of the platform implementation. */
+
+#define DEFAULT_RSTVEC 0x00001000
+#define SAIL_XLEN 64
+
+extern bool rv_enable_dirty_update;
+extern bool rv_enable_misaligned;
+extern bool rv_mtval_has_illegal_inst_bits;
+
+extern uint64_t rv_ram_base;
+extern uint64_t rv_ram_size;
+
+extern uint64_t rv_rom_base;
+extern uint64_t rv_rom_size;
+
+extern uint64_t rv_clint_base;
+extern uint64_t rv_clint_size;
+
+extern uint64_t rv_htif_tohost;
+extern uint64_t rv_insns_per_tick;
+
+extern int term_fd;
+void plat_term_write_impl(char c);