Add submodule names explicitly for easier yosys graph reading.
authorDaniel Benusovich <flyingmonkeys1996@gmail.com>
Thu, 7 Mar 2019 05:19:58 +0000 (21:19 -0800)
committerDaniel Benusovich <flyingmonkeys1996@gmail.com>
Thu, 7 Mar 2019 05:19:58 +0000 (21:19 -0800)
TLB/src/Cam.py

index 5c80149dd8dd8a3804757e76cf8eca789cc17652..09a0a749169b8894d39b8c4dc12f2c144188d229 100644 (file)
@@ -56,11 +56,11 @@ class Cam():
     def elaborate(self, platform=None):
         m = Module()
         # Encoder checks for multiple matches
-        m.submodules += self.encoder
+        m.submodules.encoder = self.encoder
         # Priority Encoder is used to select output address
-        m.submodules += self.p_encoder
+        m.submodules.p_encoder = self.p_encoder
         # Decoder is used to select which entry will be written to
-        m.submodules += self.decoder
+        m.submodules.decoder = self.decoder
         # Don't forget to add all entries to the submodule list
         entry_array = self.entry_array
         m.submodules += entry_array
@@ -94,6 +94,7 @@ class Cam():
                 m.d.comb += self.p_encoder.i[index].eq(entry_array[index].match)
 
             # If the priority encoder recieves an input of 0
+            # If n is 1 then the output is not valid
             with m.If(self.p_encoder.n):
                 m.d.comb += [
                     self.read_warning.eq(0),