File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
example_projects/vivado_test_prj_template_v3/src Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -69,12 +69,12 @@ module main(
69
69
input [5 : 0 ] ck_an_n,
70
70
71
71
// Digital I/O On Outer Analog Header
72
- output [5 : 0 ] ck_a,
72
+ inout [5 : 0 ] ck_a,
73
73
// Digital I/O On Inner Analog Header
74
74
//
75
75
76
76
// Digital I/O Low
77
- output [13 : 0 ] ck_io_low,
77
+ input [13 : 0 ] ck_io_low,
78
78
79
79
// Digital I/O High
80
80
output [41 : 26 ] ck_io_high,
@@ -87,9 +87,16 @@ module main(
87
87
output ck_ioa
88
88
);
89
89
90
- `VIVADO_MODULE_HEADER
90
+ // `VIVADO_MODULE_HEADER
91
91
92
92
93
+ // convinience rename ==========================================================
94
+ logic [13 : 0 ] hdr_in;
95
+ assign hdr_in[13 : 0 ] = ck_io_low[13 : 0 ];
96
+
97
+ logic [15 : 0 ] hdr_out;
98
+ assign ck_io_high[41 : 26 ] = hdr_out[15 : 0 ];
99
+
93
100
// clocks ======================================================================
94
101
95
102
logic sys_pll_locked; // asyn
You can’t perform that action at this time.
0 commit comments