Commit Diff
--- /dev/null +++ rvvm/rvram.c @@ -0,0 +1,5 @@ +#include <err.h> +#include <stdint.h> +#include <string.h> + +#include "rvram.h" --- /dev/null +++ rvvm/rvram.h @@ -0,0 +1,9 @@ +#ifndef _RVRAM_H_ +#define _RVRAM_H_ + +#include <stdint.h> + +struct rv_ram { + // ... +}; +#endif
