有人预言,RISC-V或将是继Intel和Arm之后的第三大主流处理器体系。欢迎访问全球首家只专注于RISC-V单片机行业应用的中文网站
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 新ちゃん 于 2020-8-20 22:10 编辑
3.6 chisel3的安装与使用chisel3的安装教程:
https://github.com/freechipsproject/chisel3/tree/3d8064a9f2fd49bffb402b91131087c19ca7d6fc
1、 先安装java,下面是以Ubuntu为例子。
- sudo apt-get install default-jdk
复制代码
2、 安装sbt,安装sbt过程中可能因为网速或链接的问题会出现下载失败的现象,多试几次就好。 - echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 642AC823
- sudo apt-get update
- sudo apt-get install sbt
复制代码
3、 教程中是安装Verilator的,但我不需要利用Verilator完成仿真,所以我是没有安装的,不安装也不影响rtl的生成。需要安装的话可以参考教程自行安装。
chisel3的学习资料:
1、 https://chisel.eecs.berkeley.edu/2.2.0/getting-started.html
2、 https://chisel.eecs.berkeley.edu/documentation.html (这里有几份资料可以下载,有一份中文资料)
3、 http://www.misclogic.com/html/2017-05-07-chisel-vs-verilog.htm
4、 https://www.scala-lang.org/api/current/scala/collection/immutable/List.html (这是scala的标准库)
5、 https://me.csdn.net/leishangwen (有一系列的教程)
chisel-tutorial项目的编译:
1、 项目克隆。
- git clone https://github.com/ucb-bar/chisel-tutorial.git
- cd chisel-tutorial
- git fetch origin
- git checkout release
复制代码
2、 运行sbt编译项目。
3、 编译Chisel Tutorials的各例程。
1)运行sbt后单独编译:
- test:runMain problems.Launcher Counter
复制代码
2)运行脚本编译全部例子: - ./run-problem.sh all
- ./run-solution.sh all
- ./run-examples.sh all
复制代码
chisel-tutorial项目的说明:
空缺!
本来想对problems、solutions和examples目录下的各个文件进行详细说明的,不过我懒了,所以后面再补充吧。
本篇完,感谢关注:RISC-V单片机中文网
|