reformat header
[shakti-peripherals.git] / src / peripherals / spi / spi.bsv
index f427e28c5f62415b539eeb6c65cb6d05a3c91d48..03f78d8b6e1748d8e7e331d1fd6bfaeed067db15 100644 (file)
@@ -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[1];
-            temp[0] = qspi.out.io_out[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[1];
-            temp[0] = qspi.out.io_out_en[0];
+            qspi.out.io_out_en.get(temp2);
+            temp[0] = temp2[0];
+            temp[1] = temp2[1];
             return temp;
         endmethod
       endinterface;
@@ -93,11 +97,11 @@ package spi;
             temp[2] = 0;
             temp[1] = in[1];
             temp[0] = in[0];
-            qspi.out.io_in(temp);
+            qspi.out.io_in.put(temp);
         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;