whitespace fix in docstring
authorTobias Platen <tplaten@posteo.de>
Mon, 25 May 2020 14:29:39 +0000 (16:29 +0200)
committerTobias Platen <tplaten@posteo.de>
Mon, 25 May 2020 14:29:39 +0000 (16:29 +0200)
src/soc/experiment/l0_cache.py

index 762ed582890a8fcc9d6d35c63dc036e6f9bd71f4..41892abbbeda3be7f424035526965da82a113370 100644 (file)
@@ -149,8 +149,9 @@ class DataMergerRecord(Record):
 class DataMerger(Elaboratable):
     """DataMerger
 
-    Merges data based on an address-match matrix.  Identifies (picks) one (any) row,
-    then uses that row, based on matching address bits, to merge (OR) all data
+    Merges data based on an address-match matrix.  
+    Identifies (picks) one (any) row, then uses that row, 
+    based on matching address bits, to merge (OR) all data
     rows into the output.
 
     Basically, by the time DataMerger is used, all of its incoming data is
@@ -188,6 +189,10 @@ class DataMerger(Elaboratable):
             ul.append(DataMergerRecord())
         self.data_i = Array(ul)
         self.data_o = DataMergerRecord()
+        
+        def elaborate(self, platform):
+        m = Module()
+        comb, sync = m.d.comb, m.d.sync
 
 
 class LDSTPort(Elaboratable):