MIPS/README.md

22 lines
847 B
Markdown
Raw Normal View History

2021-05-22 16:43:39 +08:00
Magically Improved Pipeline Stages
===
Our awesome `MIPS` CPU written in `SystemVerilog` for Loongson Cup
2021-05-22 20:57:12 +08:00
```
.
├── fpga <-- 实验箱测试顶层文件
├── resources <-- 资源包
2021-06-18 15:43:51 +08:00
│ └── 2021 <-- 2021年资源包
2021-05-22 20:57:12 +08:00
│ ├── cpu132_gettrace <-- 性能测试基准(gs132)
│ ├── soc_axi_func <-- AXI功能测试
│ ├── soc_axi_perf <-- AXI性能测试
│ └── soft <-- 测试用程序
│ ├── func <-- 功能测试
│ ├── memory_game <-- 记忆游戏
│ └── perf_func <-- 性能测试
└── src <-- CPU设计代码
2021-06-18 15:43:51 +08:00
├── AXI <-- AXI总线交互
└── Cache <-- Cache
2021-05-22 20:57:12 +08:00
```