Author: matt
Date: 2007-09-24 17:22:25 -0600 (Mon, 24 Sep 2007)
New Revision: 6520

Added:
   gnuradio/branches/developers/matt/u2f/eth/bench/verilog/miim_model.v
Log:
model the mdc and interrupt features.  this is a skeleton and needs work


Added: gnuradio/branches/developers/matt/u2f/eth/bench/verilog/miim_model.v
===================================================================
--- gnuradio/branches/developers/matt/u2f/eth/bench/verilog/miim_model.v        
                        (rev 0)
+++ gnuradio/branches/developers/matt/u2f/eth/bench/verilog/miim_model.v        
2007-09-24 23:22:25 UTC (rev 6520)
@@ -0,0 +1,14 @@
+
+// Skeleton PHY interface simulator
+
+module miim_model(input mdc_i, 
+                 inout mdio, 
+                 input phy_resetn_i, 
+                 input phy_clk_i, 
+                 output phy_intn_o,
+                 output [2:0] speed_o);
+
+   assign                     phy_intn_o = 1;    // No interrupts
+   assign                     speed_o = 3'b100;  // 1G mode
+   
+endmodule // miim_model



_______________________________________________
Commit-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnuradio

Reply via email to