From: Tobias Platen Date: Wed, 22 Sep 2021 16:45:59 +0000 (+0200) Subject: whitespace cleanup X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=80860c32af7737127a7ace1e2d18126bb3d8f13b;p=soc.git whitespace cleanup --- diff --git a/src/soc/experiment/test/test_compldst_multi_mmu.py b/src/soc/experiment/test/test_compldst_multi_mmu.py index 2635c555..a62bd58f 100644 --- a/src/soc/experiment/test/test_compldst_multi_mmu.py +++ b/src/soc/experiment/test/test_compldst_multi_mmu.py @@ -141,14 +141,14 @@ class TestLDSTCompUnitRegSpecMMU(LDSTCompUnit): m.submodules.mmu = self.mmu # link addr-go direct to rel m.d.comb += self.ad.go_i.eq(self.ad.rel_o) - + # link mmu and dcache together dcache = self.l0.pimem.dcache mmu = self.mmu m.d.comb += dcache.m_in.eq(mmu.d_out) # MMUToDCacheType m.d.comb += mmu.d_in.eq(dcache.m_out) # DCacheToMMUType - - + + return m @@ -163,9 +163,9 @@ def test_scoreboard_regspec_mmu(): units=units) dut = TestLDSTCompUnitRegSpecMMU(pspec) - + # TODO: setup pagetables for MMU - + vl = rtlil.convert(dut, ports=dut.ports()) with open("test_ldst_comp_mmu2.il", "w") as f: f.write(vl)