Skip to content

Commit 23af5f5

Browse files
authored
Merge pull request freechipsproject#137 from sterin/minor-fixes
Minor description problem: fix incorrect arguments for ChiselTest's peek()
2 parents 1d13487 + d8c3b59 commit 23af5f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2.6_chiseltest.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"| | iotesters | ChiselTest |\n",
7777
"| :---- | :--- | :--- |\n",
7878
"| poke | poke(c.io.in1, 6) | c.io.in1.poke(6.U) |\n",
79-
"| peek | peek(c.io.out1) | c.io.out1.peek(6.U) |\n",
79+
"| peek | peek(c.io.out1) | c.io.out1.peek() |\n",
8080
"| expect | expect(c.io.out1, 6) | c.io.out1.expect(6.U) |\n",
8181
"| step | step(1) | c.io.clock.step(1) |\n",
8282
"| initiate | Driver.execute(...) { c => | test(...) { c => |\n"

0 commit comments

Comments
 (0)