From 586f991dea7e4daf3c00ac52a6357f50284ac654 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 22 Apr 2019 04:52:09 +0100 Subject: [PATCH] data_i needs to be data_size not input_size --- TLB/src/SetAssociativeCache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TLB/src/SetAssociativeCache.py b/TLB/src/SetAssociativeCache.py index c4e030e0..20957b78 100644 --- a/TLB/src/SetAssociativeCache.py +++ b/TLB/src/SetAssociativeCache.py @@ -104,7 +104,7 @@ class SetAssociativeCache(): self.command = Signal(2) # 00=None, 01=Read, 10=Write (see SA_XX) self.cset = Signal(max=set_count) # The set to be checked self.tag = Signal(tag_size) # The tag to find - self.data_i = Signal(input_size) # The input data + self.data_i = Signal(data_size) # The input data # Output self.ready = Signal(1) # 0 => Processing 1 => Ready for commands -- 2.30.2