Skip to content

Commit

Permalink
tests: removed unnecessary debug output
Browse files Browse the repository at this point in the history
azonenberg committed Oct 19, 2016
1 parent 793b6a4 commit a7e7e46
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions tests/greenpak4/Ethernet.v
Original file line number Diff line number Diff line change
@@ -21,13 +21,13 @@
/**
@brief Minimal 10baseT autonegotiation implementation
*/
module Ethernet(rst_done, txd, lcw, burst_start, lcw_advance, link_up);
module Ethernet(txd, lcw, burst_start, lcw_advance, link_up);

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// I/O declarations

(* LOC = "P20" *)
output reg rst_done = 0;
output link_up;

(* LOC = "P19" *)
(* DRIVE_STRENGTH = "2X" *)
@@ -42,9 +42,6 @@ module Ethernet(rst_done, txd, lcw, burst_start, lcw_advance, link_up);
(* LOC = "P16" *)
output lcw_advance;

(* LOC = "P15" *)
output link_up;

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Power-on-reset configuration

@@ -252,11 +249,4 @@ module Ethernet(rst_done, txd, lcw, burst_start, lcw_advance, link_up);

end

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Debug outputs

//Detect when the system reset has completed
always @(posedge clk_fabric)
rst_done <= 1;

endmodule

0 comments on commit a7e7e46

Please sign in to comment.