From 8bf8e7653255fe1f6647d843b4e590fc2be5d79f Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 25 Jun 2018 10:13:53 +0100 Subject: [PATCH] 2 wires per cell muxer --- src/test_bsv/pinmux.bsv | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test_bsv/pinmux.bsv b/src/test_bsv/pinmux.bsv index 4b04fb5..1c91d41 100644 --- a/src/test_bsv/pinmux.bsv +++ b/src/test_bsv/pinmux.bsv @@ -86,9 +86,9 @@ package pinmux; // the followins wires capture the pin-mux selection // values for each mux assigned to a CELL - Wire#(Bit#(1)) wrcell0_mux<-mkDWire(0); - Wire#(Bit#(1)) wrcell1_mux<-mkDWire(0); - Wire#(Bit#(1)) wrcell2_mux<-mkDWire(0); + Wire#(Bit#(2)) wrcell0_mux<-mkDWire(0); + Wire#(Bit#(2)) wrcell1_mux<-mkDWire(0); + Wire#(Bit#(2)) wrcell2_mux<-mkDWire(0); // following wires capture signals to IO CELL if io-0 is // allotted to it Wire#(Bit#(1)) cell0_mux_out<-mkDWire(0); -- 2.30.2