File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ name `PipeCon` for pipelined connection.
5454The interface consisting of following signals:
5555
5656``` scala
57- class PipeConIO (private val addrWidth : Int ) extends Bundle {
57+ class PipeCon (private val addrWidth : Int ) extends Bundle {
5858 val address = Input (UInt (addrWidth.W ))
5959 val rd = Input (Bool ())
6060 val wr = Input (Bool ())
@@ -68,7 +68,7 @@ class PipeConIO(private val addrWidth: Int) extends Bundle {
6868``` PipeCon ``` itself is an abstract class, just containing the interface:
6969
7070``` scala
71- abstract class PipeCon (addrWidth : Int ) extends Module {
71+ abstract class PipeConDevice (addrWidth : Int ) extends Module {
7272 val cpuPort = IO (new PipeConIO (addrWidth))
7373}
7474```
@@ -195,7 +195,7 @@ To analyze memory issues (e.g., increase the heap size with Xmx) use a ```.sbtop
195195 * [x] Wrapper for OCP (in Patmos)
196196 * [ ] Integrate a simple multicore device with T-CREST
197197 * A multicore "Hello World" also for the handbook
198- * [ ] Run S4NOC with T-CREST
198+ * [ * ] Run S4NOC with T-CREST
199199 * [ ] Move (copy) the fair arbiter from the Chisel book into this repo
200200 * [ ] Write a test for the arbiter (or delegate it)
201201 * [ ] Use that arbiter for access to the serial port in T-CREST (using the ip-contributions version)
You can’t perform that action at this time.
0 commit comments