Commit Diff
--- rvvm/rvram.h +++ rvvm/rvram.h @@ -1,6 +1,7 @@ #ifndef _RVRAM_H_ #define _RVRAM_H_ +#include <stddef.h> #include <stdint.h> struct rv_ram { @@ -8,4 +9,6 @@ struct rv_ram { uint64_t base_addr; size_t size; }; + +uint64_t rv_ram_read(struct rv_ram *m, uint64_t addr); #endif
