comments and whitespace cleanup
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 4 Mar 2019 09:12:41 +0000 (09:12 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 4 Mar 2019 09:12:41 +0000 (09:12 +0000)
TLB/src/CacheWalker.py
TLB/src/CamEntry.py

index b075828eee5d02b8ebe651272f82c56ff1915451..d0d33980845dd924ce96deb9ad24cae503471915 100644 (file)
@@ -23,7 +23,7 @@ class CacheWalker():
         self.assoc = assoc # Assciativity of the cache
 
         self.read_port = mem.read_port
-        self.write_port = mem.write_port 
+        self.write_port = mem.write_port
 
         if (mem_size % assoc != 0):
             print("Cache Walker: Memory cannot be distributed between sets")
index 8be656227f0236e0ea5c5238effffe83b690df43..726fb12632dcb48b2104b16763eb3fa5e1508e49 100644 (file)
@@ -25,7 +25,7 @@ class CamEntry:
         # Output
         self.match = Signal(1) # Result of the internal/input key comparison
         self.data = Signal(data_size)
+
     def elaborate(self, platform=None):
         m = Module()
         with m.Switch(self.command):