commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r6493 - gnuradio/branches/developers/matt/u2f/control_


From: matt
Subject: [Commit-gnuradio] r6493 - gnuradio/branches/developers/matt/u2f/control_lib
Date: Thu, 20 Sep 2007 17:47:15 -0600 (MDT)

Author: matt
Date: 2007-09-20 17:47:15 -0600 (Thu, 20 Sep 2007)
New Revision: 6493

Modified:
   gnuradio/branches/developers/matt/u2f/control_lib/serdes_rx.v
Log:
moved some declarations around


Modified: gnuradio/branches/developers/matt/u2f/control_lib/serdes_rx.v
===================================================================
--- gnuradio/branches/developers/matt/u2f/control_lib/serdes_rx.v       
2007-09-20 23:46:27 UTC (rev 6492)
+++ gnuradio/branches/developers/matt/u2f/control_lib/serdes_rx.v       
2007-09-20 23:47:15 UTC (rev 6493)
@@ -61,10 +61,8 @@
    reg                odd;
    
    reg [31:0]  line_i;
-   reg                sop_i;
-   reg                eop_i;
-   reg                error_i;
-              
+   reg                sop_i, eop_i, error_i;
+   wire        full;
    reg [15:0]  halfline;
    reg                data_valid, phase;
    reg [8:0]   holder;
@@ -73,6 +71,7 @@
 
    reg [15:0]  CRC;
    wire [15:0] nextCRC;
+   reg                write_d;
    
    ss_rcvr #(.WIDTH(18)) ss_rcvr
      (.rxclk(ser_rx_clk),.sysclk(clk),.rst(rst),
@@ -229,7 +228,6 @@
 
    CRC16_D16 crc_blk(chosen_data[15:0],CRC,nextCRC);
 
-   reg write_d;
    always @(posedge clk)
      if(rst) write_d <= 0;
      else write_d <= write_pre;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]