aboutsummaryrefslogtreecommitdiffstats
path: root/usrp2/simple_gemac/eth_tasks_f36.v
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-11-23 15:30:11 -0800
committerJosh Blum <josh@joshknows.com>2010-11-23 19:06:59 -0800
commit2a2e33575743b4a162935569321d47030f4bd5d0 (patch)
tree133c2748aa5fe126bc1bc93b90128d06c45a1d75 /usrp2/simple_gemac/eth_tasks_f36.v
parentffdb0ba08887e9bf9df600138d1e209e37d043db (diff)
downloaduhd-2a2e33575743b4a162935569321d47030f4bd5d0.tar.gz
uhd-2a2e33575743b4a162935569321d47030f4bd5d0.tar.bz2
uhd-2a2e33575743b4a162935569321d47030f4bd5d0.zip
reduce warnings, modernize testbench
Diffstat (limited to 'usrp2/simple_gemac/eth_tasks_f36.v')
-rw-r--r--usrp2/simple_gemac/eth_tasks_f36.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/usrp2/simple_gemac/eth_tasks_f36.v b/usrp2/simple_gemac/eth_tasks_f36.v
index efd72778b..dc64971d4 100644
--- a/usrp2/simple_gemac/eth_tasks_f36.v
+++ b/usrp2/simple_gemac/eth_tasks_f36.v
@@ -4,11 +4,11 @@ task SendFlowCtrl;
input [15:0] fc_len;
begin
$display("Sending Flow Control, quanta = %d, time = %d", fc_len,$time);
- pause_time <= fc_len;
+ //pause_time <= fc_len;
@(posedge eth_clk);
- pause_req <= 1;
+ //pause_req <= 1;
@(posedge eth_clk);
- pause_req <= 0;
+ //pause_req <= 0;
$display("Sent Flow Control");
end
endtask // SendFlowCtrl