From: Luke Kenneth Casson Leighton Date: Tue, 26 May 2020 22:24:16 +0000 (+0100) Subject: remove sync (not needed) X-Git-Tag: div_pipeline~809 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=93b624df3a445fefdbbec6996586025a9f59f6d4;p=soc.git remove sync (not needed) --- diff --git a/src/soc/regfile/virtual_port.py b/src/soc/regfile/virtual_port.py index cf525293..0492a5d7 100644 --- a/src/soc/regfile/virtual_port.py +++ b/src/soc/regfile/virtual_port.py @@ -37,7 +37,7 @@ class VirtualRegPort(RegFileArray): def elaborate(self, platform): m = super().elaborate(platform) - comb, sync = m.d.comb, m.d.sync + comb = m.d.comb # connect up: detect if read is requested on large (full) port # nothing fancy needed because reads are same-cycle