From: Neel Date: Mon, 23 Jul 2018 04:44:33 +0000 (+0530) Subject: redo pinmux experiment to get/put interface X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aadbae24bcd41b254981e985697e0c7c6b677441;p=pinmux.git redo pinmux experiment to get/put interface --- diff --git a/src/bsv/bsv_lib/slow_peripherals.bsv b/src/bsv/bsv_lib/slow_peripherals.bsv index 59e202a..ecbfe73 100644 --- a/src/bsv/bsv_lib/slow_peripherals.bsv +++ b/src/bsv/bsv_lib/slow_peripherals.bsv @@ -209,8 +209,8 @@ package slow_peripherals; Wire#(Bit#(32)) wr_interrupt <- mkWire(); // NEEL EDIT OVER /*=======================================================*/ - mkConnection(pinmux.peripheral_side.uart.tx, uart0.io.tx); - mkConnection(pinmux.peripheral_side.uart.rx, uart0.io.rx); + mkConnection(pinmux.peripheral_side.uart.tx, uart0.io.sout); + mkConnection(pinmux.peripheral_side.uart.rx, uart0.io.sin); AXI4_Lite_Fabric_IFC #(1, Num_Slow_Slaves, `PADDR, `Reg_width,`USERSPACE) slow_fabric <- mkAXI4_Lite_Fabric(fn_address_mapping); Ifc_AXI4Lite_AXI4_Bridge bridge <-mkAXI4Lite_AXI4_Bridge(fast_clock,fast_reset);