[v1.03][RISCV] Implementing basic skeleton for RISC-V backend

This commit is contained in:
Dr-Noob
2023-04-01 16:46:54 +02:00
parent 1f450b23a1
commit 9a69a7f58d
10 changed files with 141 additions and 6 deletions

View File

@@ -1,11 +1,18 @@
#include <stdint.h>
#include "uarch.h"
#include "../common/global.h"
struct uarch {
//MICROARCH uarch;
char* uarch_str;
int32_t process; // measured in nanometers
};
char* get_str_uarch(struct cpuInfo* cpu) {
return "Unknown";
}
void free_uarch_struct(struct uarch* arch) {
}