From 386b44d4d41c8fefa0d03c80728fed2271da1638 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 16 Dec 2021 14:55:38 +0000 Subject: [PATCH] give names to MMU records --- src/soc/experiment/mmu.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/soc/experiment/mmu.py b/src/soc/experiment/mmu.py index e7010584..1f69ec1f 100644 --- a/src/soc/experiment/mmu.py +++ b/src/soc/experiment/mmu.py @@ -113,11 +113,11 @@ class MMU(Elaboratable): (i.e. there is no gRA -> hRA translation). """ def __init__(self): - self.l_in = LoadStore1ToMMUType() - self.l_out = MMUToLoadStore1Type() - self.d_out = MMUToDCacheType() - self.d_in = DCacheToMMUType() - self.i_out = MMUToICacheType() + self.l_in = LoadStore1ToMMUType("l_in") + self.l_out = MMUToLoadStore1Type("l_out") + self.d_out = MMUToDCacheType("d_out") + self.d_in = DCacheToMMUType("d_in") + self.i_out = MMUToICacheType("i_out") def radix_tree_idle(self, m, l_in, r, v): comb = m.d.comb -- 2.30.2