mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-08-05 21:24:11 -04:00
fpga: Format Verilog
This commit is contained in:
parent
aedd6102ea
commit
050e0f2673
4 changed files with 6 additions and 6 deletions
|
@ -360,7 +360,7 @@ module uart_core (
|
||||||
// Just a glitch.
|
// Just a glitch.
|
||||||
rxd_bitrate_ctr_rst = 1;
|
rxd_bitrate_ctr_rst = 1;
|
||||||
erx_ctrl_new = ERX_IDLE;
|
erx_ctrl_new = ERX_IDLE;
|
||||||
erx_ctrl_we = 1;
|
erx_ctrl_we = 1;
|
||||||
end
|
end
|
||||||
|
|
||||||
else begin
|
else begin
|
||||||
|
|
|
@ -50,7 +50,7 @@ module uart_fifo (
|
||||||
output wire [7 : 0] out_data,
|
output wire [7 : 0] out_data,
|
||||||
input wire out_ack,
|
input wire out_ack,
|
||||||
|
|
||||||
output wire fpga_cts
|
output wire fpga_cts
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -20,8 +20,8 @@ module application_fpga (
|
||||||
output wire interface_rx,
|
output wire interface_rx,
|
||||||
input wire interface_tx,
|
input wire interface_tx,
|
||||||
|
|
||||||
input wire interface_ch552_cts, // CH552 clear to send, 1 = OK, 0 = NOK
|
input wire interface_ch552_cts, // CH552 clear to send, 1 = OK, 0 = NOK
|
||||||
output wire interface_fpga_cts, // FPGA clear to send, 1 = OK, 0 = NOK
|
output wire interface_fpga_cts, // FPGA clear to send, 1 = OK, 0 = NOK
|
||||||
|
|
||||||
output wire spi_ss,
|
output wire spi_ss,
|
||||||
output wire spi_sck,
|
output wire spi_sck,
|
||||||
|
@ -297,7 +297,7 @@ module application_fpga (
|
||||||
.txd(interface_rx),
|
.txd(interface_rx),
|
||||||
|
|
||||||
.ch552_cts(interface_ch552_cts),
|
.ch552_cts(interface_ch552_cts),
|
||||||
.fpga_cts(interface_fpga_cts),
|
.fpga_cts (interface_fpga_cts),
|
||||||
|
|
||||||
.cs(uart_cs),
|
.cs(uart_cs),
|
||||||
.we(uart_we),
|
.we(uart_we),
|
||||||
|
|
|
@ -308,7 +308,7 @@ module application_fpga_sim (
|
||||||
.txd(interface_rx),
|
.txd(interface_rx),
|
||||||
|
|
||||||
.ch552_cts(interface_ch552_cts),
|
.ch552_cts(interface_ch552_cts),
|
||||||
.fpga_cts(interface_fpga_cts),
|
.fpga_cts (interface_fpga_cts),
|
||||||
|
|
||||||
.cs(uart_cs),
|
.cs(uart_cs),
|
||||||
.we(uart_we),
|
.we(uart_we),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue