diff options
| author | Julian Blake Kongslie | 2022-05-15 15:50:21 -0700 |
|---|---|---|
| committer | Julian Blake Kongslie | 2022-05-15 15:50:21 -0700 |
| commit | c9697a5bc6e315be8441223fbb07d00e57547e2f (patch) | |
| tree | f52f502910f9276101858bd237aec17aca3232ad /hdl/top.sv | |
| parent | Change makefile to unconditionally load memory for 16 PDP-8s (diff) | |
| download | multipdp8-c9697a5bc6e315be8441223fbb07d00e57547e2f.tar.xz | |
Consistent RS232 wire names (DCE side names is used everywhere)
Diffstat (limited to '')
| -rw-r--r-- | hdl/top.sv | 20 |
1 files changed, 10 insertions, 10 deletions
| @@ -8,10 +8,10 @@ module top | |||
| 8 | , inout wire [28:13] gpiob | 8 | , inout wire [28:13] gpiob |
| 9 | , inout wire [40:31] gpioc | 9 | , inout wire [40:31] gpioc |
| 10 | 10 | ||
| 11 | , output wire rs232_tx | 11 | , output wire rs232_rxd |
| 12 | , input wire rs232_rx | 12 | , input wire rs232_txd |
| 13 | , output wire rs232_rts | 13 | , output wire rs232_cts |
| 14 | , input wire rs232_cts | 14 | , input wire rs232_rts |
| 15 | 15 | ||
| 16 | , output wire debug_tx | 16 | , output wire debug_tx |
| 17 | , output wire debug_rx | 17 | , output wire debug_rx |
| @@ -24,8 +24,8 @@ module top | |||
| 24 | , inout bit [7:0] ram_data | 24 | , inout bit [7:0] ram_data |
| 25 | ); | 25 | ); |
| 26 | 26 | ||
| 27 | assign debug_tx = rs232_tx; | 27 | assign debug_tx = rs232_rxd; |
| 28 | assign debug_rx = rs232_rx; | 28 | assign debug_rx = rs232_txd; |
| 29 | 29 | ||
| 30 | bit internal_clock; | 30 | bit internal_clock; |
| 31 | bit internal_reset; | 31 | bit internal_reset; |
| @@ -67,8 +67,8 @@ module top | |||
| 67 | , .out_valid(wire_tx_valid) | 67 | , .out_valid(wire_tx_valid) |
| 68 | , .out_data(wire_tx_data) | 68 | , .out_data(wire_tx_data) |
| 69 | 69 | ||
| 70 | , .tx(rs232_tx) | 70 | , .rxd(rs232_rxd) |
| 71 | , .cts(rs232_cts) | 71 | , .rts(rs232_rts) |
| 72 | ); | 72 | ); |
| 73 | 73 | ||
| 74 | bit rs232_tx_ready; | 74 | bit rs232_tx_ready; |
| @@ -108,8 +108,8 @@ module top | |||
| 108 | , .in_valid(wire_rx_valid) | 108 | , .in_valid(wire_rx_valid) |
| 109 | , .in_data(wire_rx_data) | 109 | , .in_data(wire_rx_data) |
| 110 | 110 | ||
| 111 | , .rx(rs232_rx) | 111 | , .txd(rs232_txd) |
| 112 | , .rts(rs232_rts) | 112 | , .cts(rs232_cts) |
| 113 | ); | 113 | ); |
| 114 | 114 | ||
| 115 | bit rs232_rx_ready; | 115 | bit rs232_rx_ready; |
