From cffe0b6d4445a0126e99efe7b67cf2422c96c53a Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Wed, 22 Jul 2020 17:13:13 +0200 Subject: [PATCH] Remove unnecessary signal reset --- gram/phy/ecp5ddrphy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gram/phy/ecp5ddrphy.py b/gram/phy/ecp5ddrphy.py index 6951401..592c15d 100644 --- a/gram/phy/ecp5ddrphy.py +++ b/gram/phy/ecp5ddrphy.py @@ -142,7 +142,7 @@ class ECP5DDRPHY(Peripheral, Elaboratable): nphases = 2 databits = len(self.pads.dq.io) - burstdet_reg = Signal(databits//8, reset=0xFF) + burstdet_reg = Signal(databits//8) m.d.comb += self.burstdet.r_data.eq(burstdet_reg) # Burstdet clear -- 2.30.2