From 172dc7dc5fcd0b38fec6317acc39579ed27ec79a Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 30 Apr 2019 23:36:21 +0100 Subject: [PATCH] update comments --- src/add/singlepipe.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/add/singlepipe.py b/src/add/singlepipe.py index 002b6015..f2632d27 100644 --- a/src/add/singlepipe.py +++ b/src/add/singlepipe.py @@ -778,12 +778,12 @@ class FIFOControl(ControlBase): m.d.comb += nmoperator.eq(result, self.process(data_i)) return nmoperator.cat(result) - ## prev: make the FIFO "look" like a PrevControl... + ## prev: make the FIFO (Queue object) "look" like a PrevControl... m.submodules.fp = fp = PrevControl() fp.valid_i, fp._ready_o, fp.data_i = fifo.we, fifo.writable, fifo.din m.d.comb += fp._connect_in(self.p, fn=processfn) - # next: make the FIFO "look" like a NextControl... + # next: make the FIFO (Queue object) "look" like a NextControl... m.submodules.fn = fn = NextControl() fn.valid_o, fn.ready_i, fn.data_o = fifo.readable, fifo.re, fifo.dout connections = fn._connect_out(self.n, fn=nmoperator.cat) @@ -794,7 +794,7 @@ class FIFOControl(ControlBase): m.d.comb += connections[:2] # combinatorial on next ready/valid else: m.d.sync += connections[:2] # unbuffered fwft mode needs sync - data_o = connections[2] + data_o = connections[2] # get the data data_o = self._postprocess(data_o) # XXX TBD, does nothing right now m.d.comb += data_o -- 2.30.2