mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Removed .* from /wally-pipelined/src/uncore/uart.sv
This commit is contained in:
parent
7d614869a1
commit
f2f15c0495
@ -84,7 +84,19 @@ module uart (
|
|||||||
|
|
||||||
logic BAUDOUTb; // loop tx clock BAUDOUTb back to rx clock RCLK
|
logic BAUDOUTb; // loop tx clock BAUDOUTb back to rx clock RCLK
|
||||||
// *** make sure reads don't occur on UART unless fully selected because they could change state. This applies to all peripherals
|
// *** make sure reads don't occur on UART unless fully selected because they could change state. This applies to all peripherals
|
||||||
uartPC16550D u(.RCLK(BAUDOUTb), .*);
|
uartPC16550D u(
|
||||||
|
// Processor Interface
|
||||||
|
.HCLK, .HRESETn,
|
||||||
|
.A, .Din,
|
||||||
|
.Dout,
|
||||||
|
.MEMRb, .MEMWb,
|
||||||
|
.INTR, .TXRDYb, .RXRDYb,
|
||||||
|
// Clocks
|
||||||
|
.BAUDOUTb, .RCLK(BAUDOUTb),
|
||||||
|
// E1A Driver
|
||||||
|
.SIN, .DSRb, .DCDb, .CTSb, .RIb,
|
||||||
|
.SOUT, .RTSb, .DTRb, .OUT1b, .OUT2b
|
||||||
|
);
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user