diff --git a/rtl/perips/ram.v b/rtl/perips/ram.v index 2c2fa43..1648043 100644 --- a/rtl/perips/ram.v +++ b/rtl/perips/ram.v @@ -14,7 +14,7 @@ limitations under the License. */ -`include "defines.v" +`include "../core/defines.v" // ram module module ram( diff --git a/rtl/perips/rom.v b/rtl/perips/rom.v index b23547a..6412a62 100644 --- a/rtl/perips/rom.v +++ b/rtl/perips/rom.v @@ -14,7 +14,7 @@ limitations under the License. */ -`include "defines.v" +`include "../core/defines.v" module rom( diff --git a/rtl/perips/timer.v b/rtl/perips/timer.v index 085ffde..34e6758 100644 --- a/rtl/perips/timer.v +++ b/rtl/perips/timer.v @@ -14,7 +14,7 @@ limitations under the License. */ -`include "defines.v" +`include "../core/defines.v" // 32 bits count up timer module diff --git a/rtl/soc/tinyriscv_soc_top.v b/rtl/soc/tinyriscv_soc_top.v index 05f16c8..282b906 100644 --- a/rtl/soc/tinyriscv_soc_top.v +++ b/rtl/soc/tinyriscv_soc_top.v @@ -14,7 +14,7 @@ limitations under the License. */ -`include "defines.v" +`include "../core/defines.v" // tinyriscv soc顶层模块 module tinyriscv_soc_top( @@ -316,6 +316,7 @@ module tinyriscv_soc_top( // jtag模块例化 jtag_top u_jtag_top( + .clk(clk), .jtag_rst_n(jtag_rst), .jtag_pin_TCK(jtag_TCK), .jtag_pin_TMS(jtag_TMS),