From f9734f4c443189888bc0b08f67a2aa3358d64c80 Mon Sep 17 00:00:00 2001 From: Cole Poirier Date: Mon, 24 Aug 2020 18:03:14 -0700 Subject: [PATCH] dcache.py fix formatting --- src/soc/experiment/dcache.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/soc/experiment/dcache.py b/src/soc/experiment/dcache.py index 3abbac42..27b7a045 100644 --- a/src/soc/experiment/dcache.py +++ b/src/soc/experiment/dcache.py @@ -560,8 +560,10 @@ class Dcache(Elaboratable): # std_ulogic_vector(TLB_WAY_BITS-1 downto 0); # signal tlb_plru_victim : tlb_plru_out_t; # TLB PLRU output interface - DEF TLBPLRUOut(): - return Array(Signal(TLB_WAY_BITS) for x in range(TLB_SET_SIZE)) + def TLBPLRUOut(): + return Array( + Signal(TLB_WAY_BITS) for x in range(TLB_SET_SIZE) + ) tlb_plru_victim = TLBPLRUOut() -- 2.30.2