[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

9
src/riscv/riscv.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef __RISCV__
#define __RISCV__
#include "../common/cpu.h"
struct cpuInfo* get_cpu_info(void);
void print_debug(struct cpuInfo* cpu);
#endif