[v1.03][RISCV] Add support for compiling to RISC-V

This commit is contained in:
Dr-Noob
2023-03-31 17:57:01 +02:00
parent cf77360d1b
commit 1f450b23a1
9 changed files with 67 additions and 1 deletions

11
src/riscv/uarch.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdint.h>
struct uarch {
//MICROARCH uarch;
char* uarch_str;
int32_t process; // measured in nanometers
};
void free_uarch_struct(struct uarch* arch) {
}