Skip to content

Commit 68a0ab1

Browse files
authored
Merge pull request #6 from edanuff/main
update serial module inst in other board project top.sv files
2 parents b927f0d + f8aad9c commit 68a0ab1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

boards/a2n20v1/hdl/top.sv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,8 @@ module top #(
427427
.ENABLE(SUPERSERIAL_ENABLE),
428428
.SLOT(SUPERSERIAL_SLOT)
429429
) superserial (
430-
.a2bus_if(a2bus_if), // use system_reset_n
430+
.a2bus_if(a2bus_if),
431+
.a2mem_if(a2mem_if),
431432

432433
.data_o(ssc_d_w),
433434
.rd_en_o(ssc_rd),

boards/a2n20v2-SDRAM/hdl/top.sv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,8 @@ module top #(
598598
.ENABLE(SUPERSERIAL_ENABLE),
599599
.SLOT(SUPERSERIAL_SLOT)
600600
) superserial (
601-
.a2bus_if(a2bus_if), // use system_reset_n
601+
.a2bus_if(a2bus_if),
602+
.a2mem_if(a2mem_if),
602603

603604
.data_o(ssc_d_w),
604605
.rd_en_o(ssc_rd),

boards/a2n9/hdl/top.sv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,8 @@ module top #(
311311
.ENABLE(SUPERSERIAL_ENABLE),
312312
.SLOT(SUPERSERIAL_SLOT)
313313
) superserial (
314-
.a2bus_if(a2bus_if), // use system_reset_n
314+
.a2bus_if(a2bus_if),
315+
.a2mem_if(a2mem_if),
315316

316317
.data_o(ssc_d_w),
317318
.rd_en_o(ssc_rd),

0 commit comments

Comments
 (0)