summaryrefslogtreecommitdiff
path: root/hdl
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-03-27 16:59:18 -0700
committerJulian Blake Kongslie2022-03-27 16:59:18 -0700
commit593d29862d285987fd60ac18a90f8e5455f9fdc1 (patch)
treec75bafd407cb7b58694a6c1680e87dc216f50759 /hdl
parentAttempt to make somewhat less error-prone downloads. (diff)
downloadmultipdp8-593d29862d285987fd60ac18a90f8e5455f9fdc1.tar.xz
Add a clock output pin for debugging the PLL.
Diffstat (limited to 'hdl')
-rw-r--r--hdl/top.sv3
1 files changed, 3 insertions, 0 deletions
diff --git a/hdl/top.sv b/hdl/top.sv
index 38ab638..dcf04b5 100644
--- a/hdl/top.sv
+++ b/hdl/top.sv
@@ -7,6 +7,7 @@ module top
7 , inout wire [10:1] gpioa 7 , inout wire [10:1] gpioa
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 , output wire clock_out
10 11
11 , output bit ram_resetn 12 , output bit ram_resetn
12 , output bit ram_csn 13 , output bit ram_csn
@@ -28,6 +29,8 @@ module top
28 , .reset(internal_reset) 29 , .reset(internal_reset)
29 ); 30 );
30 31
32 assign clock_out = internal_clock;
33
31 bit ram_rx_ready; 34 bit ram_rx_ready;
32 bit ram_rx_valid; 35 bit ram_rx_valid;
33 uart_byte_t ram_rx_data; 36 uart_byte_t ram_rx_data;