X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fperipherals%2Fspi%2Fspi.bsv;h=03f78d8b6e1748d8e7e331d1fd6bfaeed067db15;hb=41ec08e8f9187474538532215ff46f80160e2cfc;hp=553f8753125246b6658a0309629140555b6113bc;hpb=87591e68cee8f5d3d0370a55ab298639b375ea74;p=shakti-peripherals.git diff --git a/src/peripherals/spi/spi.bsv b/src/peripherals/spi/spi.bsv index 553f875..03f78d8 100644 --- a/src/peripherals/spi/spi.bsv +++ b/src/peripherals/spi/spi.bsv @@ -72,17 +72,21 @@ package spi; endmethod interface io_out = interface Get method ActionValue#(Bit#(2)) get; + Bit#(4) temp2; Bit#(2) temp; - temp[1] = qspi.out.io_out.get[1]; - temp[0] = qspi.out.io_out.get[0]; + qspi.out.io_out.get(temp2); + temp[0] = temp2[0]; + temp[1] = temp2[1]; return temp; endmethod endinterface; interface io_out_en = interface Get method ActionValue#(Bit#(2)) get; + Bit#(4) temp2; Bit#(2) temp; - temp[1] = qspi.out.io_out_en.get[1]; - temp[0] = qspi.out.io_out_en.get[0]; + qspi.out.io_out_en.get(temp2); + temp[0] = temp2[0]; + temp[1] = temp2[1]; return temp; endmethod endinterface; @@ -97,7 +101,7 @@ package spi; endmethod endinterface; interface clk_o = qspi.out.clk_o; - interface ncs_o = qspi.ncs_o; + interface ncs_o = qspi.out.ncs_o; endinterface; interface slave = qspi.slave;