commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r6904 - gnuradio/branches/developers/matt/u2f/opencore


From: matt
Subject: [Commit-gnuradio] r6904 - gnuradio/branches/developers/matt/u2f/opencores/uart16550/rtl/verilog
Date: Wed, 14 Nov 2007 16:02:05 -0700 (MST)

Author: matt
Date: 2007-11-14 16:02:05 -0700 (Wed, 14 Nov 2007)
New Revision: 6904

Modified:
   
gnuradio/branches/developers/matt/u2f/opencores/uart16550/rtl/verilog/uart_transmitter.v
Log:
The other guy was on crack


Modified: 
gnuradio/branches/developers/matt/u2f/opencores/uart16550/rtl/verilog/uart_transmitter.v
===================================================================
--- 
gnuradio/branches/developers/matt/u2f/opencores/uart16550/rtl/verilog/uart_transmitter.v
    2007-11-14 22:57:18 UTC (rev 6903)
+++ 
gnuradio/branches/developers/matt/u2f/opencores/uart16550/rtl/verilog/uart_transmitter.v
    2007-11-14 23:02:05 UTC (rev 6904)
@@ -180,13 +180,14 @@
 // TX FIFO instance
 //
 // Transmitter FIFO signals
-wire [`UART_FIFO_WIDTH-1:0]                    tf_data_in;
+   reg [`UART_FIFO_WIDTH-1:0]                                                  
        tf_data_in;
 wire [`UART_FIFO_WIDTH-1:0]                    tf_data_out;
 wire                                                                           
        tf_push;
 wire                                                                           
        tf_overrun;
 wire [`UART_FIFO_COUNTER_W-1:0]                tf_count;
 
-assign                                                                         
        tf_data_in = wb_dat_i;
+always @(posedge clk)
+  tf_data_in <= wb_dat_i;
 
 uart_tfifo fifo_tx(    // error bit signal is not used in transmitter FIFO
        .clk(           clk             ), 





reply via email to

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