use relative include path

Signed-off-by: liangkangnan <liangkangnan@163.com>
pull/1/head
liangkangnan 2020-04-25 17:15:00 +08:00
parent 02d19b9e6f
commit d92352e1c2
4 changed files with 5 additions and 4 deletions

View File

@ -14,7 +14,7 @@
limitations under the License. limitations under the License.
*/ */
`include "defines.v" `include "../core/defines.v"
// ram module // ram module
module ram( module ram(

View File

@ -14,7 +14,7 @@
limitations under the License. limitations under the License.
*/ */
`include "defines.v" `include "../core/defines.v"
module rom( module rom(

View File

@ -14,7 +14,7 @@
limitations under the License. limitations under the License.
*/ */
`include "defines.v" `include "../core/defines.v"
// 32 bits count up timer module // 32 bits count up timer module

View File

@ -14,7 +14,7 @@
limitations under the License. limitations under the License.
*/ */
`include "defines.v" `include "../core/defines.v"
// tinyriscv soc // tinyriscv soc
module tinyriscv_soc_top( module tinyriscv_soc_top(
@ -316,6 +316,7 @@ module tinyriscv_soc_top(
// jtag // jtag
jtag_top u_jtag_top( jtag_top u_jtag_top(
.clk(clk),
.jtag_rst_n(jtag_rst), .jtag_rst_n(jtag_rst),
.jtag_pin_TCK(jtag_TCK), .jtag_pin_TCK(jtag_TCK),
.jtag_pin_TMS(jtag_TMS), .jtag_pin_TMS(jtag_TMS),