update comments on compalu_multi.py
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 May 2020 18:45:55 +0000 (19:45 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 May 2020 18:45:55 +0000 (19:45 +0100)
src/soc/experiment/compalu_multi.py

index 355b78bbc7118383a9e7714fbac3353dd4275885..2764f76bfde352275d093017171f9d3b126250a5 100644 (file)
@@ -419,13 +419,13 @@ class CompUnitParallelTest:
         # monitor self.dut.rd.req[rd_idx] and sets dut.rd.go[idx] for one cycle
         yield
         # TODO: also when dut.rd.go is set, put the expected value into
-        # the src_i.
+        # the src_i.  use dut.get_in[rd_idx] to do so
 
     def wr(self, wr_idx):
         # monitor self.dut.wr.req[rd_idx] and sets dut.wr.go[idx] for one cycle
         yield
         # TODO: also when dut.wr.go is set, check the output against the
-        # self.expected_o and assert
+        # self.expected_o and assert.  use dut.get_out(wr_idx) to do so.
 
 def test_compunit_regspec1():
     from alu_hier import ALU