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;