Skip to content

Commit 80e63d4

Browse files
committed
Update README with new class names
1 parent 36c22cf commit 80e63d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ name `PipeCon` for pipelined connection.
5454
The 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)

0 commit comments

Comments
 (0)