Skip to content

Commit

Permalink
parameterize number of lanes for issue #52
Browse files Browse the repository at this point in the history
  • Loading branch information
jameyhicks committed Dec 4, 2015
1 parent 0e976e6 commit 1ccbf64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions generated/xilinx/PCIEWRAPPER2.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,10 @@ interface PciewrapM_axis_rx#(numeric type lanes);
endinterface
(* always_ready, always_enabled *)
interface PciewrapPci_exp#(numeric type lanes);
method Action rxn(Bit#(8) v);
method Action rxp(Bit#(8) v);
method Bit#(8) txn();
method Bit#(8) txp();
method Action rxn(Bit#(lanes) v);
method Action rxp(Bit#(lanes) v);
method Bit#(lanes) txn();
method Bit#(lanes) txp();
endinterface
(* always_ready, always_enabled *)
interface PciewrapPl#(numeric type lanes);
Expand Down

0 comments on commit 1ccbf64

Please sign in to comment.