From 163e3cd460bbfc30f660469240d3fb88e97c7a33 Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Wed, 10 Jun 2020 12:12:44 +0200 Subject: [PATCH] Remove Peripheral inheritance in multiplexer --- gram/core/multiplexer.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gram/core/multiplexer.py b/gram/core/multiplexer.py index 6c91f9b..6e3584a 100644 --- a/gram/core/multiplexer.py +++ b/gram/core/multiplexer.py @@ -12,8 +12,6 @@ from operator import or_, and_ from nmigen import * -from lambdasoc.periph import Peripheral - from gram.common import * import gram.stream as stream from gram.compat import RoundRobin, delayed_enter @@ -219,7 +217,7 @@ class _Steerer(Elaboratable): # Multiplexer -------------------------------------------------------------------------------------- -class Multiplexer(Peripheral, Elaboratable): +class Multiplexer(Elaboratable): """Multplexes requets from BankMachines to DFI This module multiplexes requests from BankMachines (and Refresher) and -- 2.30.2