Update README
[riscv-isa-sim.git] / riscv / dts.h
1 // See LICENSE for license details.
2 #ifndef _RISCV_DTS_H
3 #define _RISCV_DTS_H
4
5 #include "processor.h"
6 #include "mmu.h"
7 #include <string>
8
9 std::string make_dts(size_t insns_per_rtc_tick, size_t cpu_hz,
10 std::vector<processor_t*> procs,
11 std::vector<std::pair<reg_t, mem_t*>> mems);
12
13 std::string dts_compile(const std::string& dts);
14
15 #endif