joe 发表于 2021-9-9 22:12:49

学习资料:Chisel汇总

https://www.youtube.com/watch?v=OhMuPQcyynY
Chisel Introduction Intensive (Beginner Track) - Chisel Community Conference 2018

https://www.youtube.com/watch?v=qM9G0jr3rLY
FIRRTL Intensive (Developer Track) - Chisel Community Conference 2018

https://github.com/freechipsproject/chisel-bootcamp
1. very good tutorial to start (including a basic introduction to Scala)
2. Some highlights:
2.1 Printf in different phases (in section 2.1_first_module): Chisel generator prints during circuit generation; Circuit prints during circuit simulation; Tester prints during testing
2.2 Notice how all Chisel variables are declared as Scala vals. Never use a Scala var for a hardware construct, since the construct itself may never change once defined; only its value may change when running the hardware.
2.3 An example to show Chisel's parameterization capabilities: Exercise: Parameterized Adder (in section 2.2_comb_logic)
2.4 Finite State Machine Comb logic (in section 2.3_control_flow)
2.5 Appendix: Explicit clock and reset (in section 2.4_sequential_logic)
2.6 IOs with Optional Fields (in section 3.1_parameters)
2.7 Implicits (in section 3.1_parameters)
2.8 AsyncFIFO example (in section 3.5_object_oriented_programming)
3. Read more
3.1 DspBlock & concept of diplomacy (in section 2.5_exercise)
3.2 section 2.6_chiseltest
3.3 section 3.6_types

https://www.chisel-lang.org/api/latest/index.html
Chisel API

https://github.com/freechipsproject/chisel-cheatsheet/releases/latest/download/chisel_cheatsheet.pdf
Chisel Cheatsheet

https://github.com/ucb-bar
UC Berkeley Architecture Research

https://twitter.github.io/scala_school/
a series of lectures at Twitter to prepare experienced engineers to be productive Scala programmers

https://blog.csdn.net/qq_34291505/article/details/86744581

https://docs.scala-lang.org/overviews/scala-book/introduction.html
Scala book from Scala offical site
————————————————
版权声明:本文为CSDN博主「ncnsnm」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/ncnsnm/article/details/118123108

页: [1]
查看完整版本: 学习资料:Chisel汇总