Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ggangliu authored Oct 20, 2022
1 parent aae5510 commit d2095e4
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,24 @@ CPU的bootloader程序将存储在ROM中,也是CPU启动后运行的第一个

# Folder structure

├── generate-rtl.py
├── generate-rtl.py //该脚本用于生成rtl代码,输出到rtl目录

├── README.md
├── rtl

├── rtl //用于存放生成的verilog代码

│   └── up_counter.v
├── software
├── src

├── software //用于存放软件代码

├── src //python源代码

│   ├── __init__.py

│   ├── init.py
│   └── isa.py
└── test

│ └── isa.py //比如,isa相关的

└── test //用于测试验证src中的python实现,并生成波形文件

└── test_isa.py

0 comments on commit d2095e4

Please sign in to comment.