OpenCores
URL https://opencores.org/ocsvn/oms8051mini/oms8051mini/trunk

Subversion Repositories oms8051mini

[/] [oms8051mini/] [trunk/] [rtl/] [uart/] [uart_cfg.v] - Diff between revs 6 and 7

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 6 Rev 7
Line 357... Line 357...
 
 
 
 
assign reg_3[31:0] = {30'h0,rx_fifo_empty,tx_fifo_full};
assign reg_3[31:0] = {30'h0,rx_fifo_empty,tx_fifo_full};
 
 
// reg_4 is tx_fifo wr
// reg_4 is tx_fifo wr
assign tx_fifo_wr_en  = sw_wr_en_4;
assign tx_fifo_wr_en  = sw_wr_en_4 & reg_ack;
assign tx_fifo_data   = reg_wdata[7:0];
assign tx_fifo_data   = reg_wdata[7:0];
 
 
// reg_5 is rx_fifo read
// reg_5 is rx_fifo read
// rx_fifo read data
// rx_fifo read data
assign reg_5[31:0] = {24'h0,rx_fifo_data};
assign reg_5[31:0] = {24'h0,rx_fifo_data};
assign  rx_fifo_rd_en = sw_rd_en_5;
assign  rx_fifo_rd_en = sw_rd_en_5 & reg_ack;
 
 
 
 
endmodule
endmodule
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.