From: Luke Kenneth Casson Leighton Date: Thu, 21 Feb 2019 00:10:02 +0000 (+0000) Subject: whitespace cleanup X-Git-Tag: div_pipeline~2393 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b611f5ba913d48a596cc287fb7e99485bf1d3986;p=soc.git whitespace cleanup --- diff --git a/TLB/CAM.py b/TLB/CAM.py index 63047d73..7016eb01 100644 --- a/TLB/CAM.py +++ b/TLB/CAM.py @@ -9,12 +9,13 @@ from CamEntry import CamEntry class CAM(): def __init__(self, key_size, data_size, cam_size): # Internal - entry_array = Array(CamEntry(key_size, data_size) for x in range(cam_size)) + entry_array = Array(CamEntry(key_size, data_size) \ + for x in range(cam_size)) encoder_input = Signal(cam_size) # Input self.write = Signal(1) # Denotes read (0) or write (1) - self.address = Signal(max=cam_size) # The address of the CAM to be written + self.address = Signal(max=cam_size) # address of the CAM to be written self.key = Signal(key_size) # The key to search for or to be written self.data_in = Signal(key_size) # The data to be written @@ -59,4 +60,3 @@ class CAM(): ] return m - \ No newline at end of file