添加基础指令解析和运行

This commit is contained in:
2025-04-17 00:04:59 +08:00
parent 5aec6bced8
commit be8c08f176
4 changed files with 288 additions and 4 deletions

10
riscv/main.c Normal file
View File

@@ -0,0 +1,10 @@
int main()
{
int a=1;
int b=2;
int c=a+b;
return c;
}