commit-gnuradio
[Top][All Lists]
Advanced

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

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


From: matt
Subject: [Commit-gnuradio] r5778 - gnuradio/branches/developers/matt/u2f/control_lib
Date: Sun, 17 Jun 2007 00:48:46 -0600 (MDT)

Author: matt
Date: 2007-06-17 00:48:46 -0600 (Sun, 17 Jun 2007)
New Revision: 5778

Modified:
   gnuradio/branches/developers/matt/u2f/control_lib/strobe_gen.v
Log:
formatting fixes


Modified: gnuradio/branches/developers/matt/u2f/control_lib/strobe_gen.v
===================================================================
--- gnuradio/branches/developers/matt/u2f/control_lib/strobe_gen.v      
2007-06-17 04:25:50 UTC (rev 5777)
+++ gnuradio/branches/developers/matt/u2f/control_lib/strobe_gen.v      
2007-06-17 06:48:46 UTC (rev 5778)
@@ -19,8 +19,6 @@
 //  Foundation, Inc., 51 Franklin Street, Boston, MA  02110-1301  USA
 //
 
-
-
 module strobe_gen 
   ( input clock,
     input reset,
@@ -29,10 +27,8 @@
     input strobe_in,
     output wire strobe );
    
-//   parameter width = 8;
-   
    reg [7:0] counter;
-   assign strobe = ~|counter && enable && strobe_in;
+   assign    strobe = ~|counter && enable && strobe_in;
    
    always @(posedge clock)
      if(reset | ~enable)





reply via email to

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