From b611f5ba913d48a596cc287fb7e99485bf1d3986 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 21 Feb 2019 00:10:02 +0000 Subject: [PATCH] whitespace cleanup --- TLB/CAM.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.30.2