mirror of https://github.com/efabless/caravel.git
revert clock to be assigned to anything so iverilog will not remove it
This commit is contained in:
parent
dbde8a5696
commit
ca4a54f5f1
|
@ -153,6 +153,8 @@ caravel uut (
|
||||||
);
|
);
|
||||||
`endif // CPU_TYPE_ARM
|
`endif // CPU_TYPE_ARM
|
||||||
`else // ! openframe
|
`else // ! openframe
|
||||||
|
wire dummy_wire_clk; // iverilog ignores clock_tb if it's not assigned
|
||||||
|
assign dummy_wire_clk = clock_tb;
|
||||||
caravel_openframe uut (
|
caravel_openframe uut (
|
||||||
.vddio (vddio_tb),
|
.vddio (vddio_tb),
|
||||||
.vssio (vssio_tb),
|
.vssio (vssio_tb),
|
||||||
|
@ -171,6 +173,14 @@ caravel uut (
|
||||||
.gpio (mprj_io_tb),
|
.gpio (mprj_io_tb),
|
||||||
.resetb (resetb_tb)
|
.resetb (resetb_tb)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
assign gpio_tb = 0;
|
||||||
|
assign vddio_2_tb = 0;
|
||||||
|
assign vssio_2_tb = 0;
|
||||||
|
assign vdda1_2_tb = 0;
|
||||||
|
assign vssa1_2_tb = 0;
|
||||||
|
|
||||||
`endif // ! openframe
|
`endif // ! openframe
|
||||||
|
|
||||||
`ifdef USE_USER_VIP
|
`ifdef USE_USER_VIP
|
||||||
|
|
Loading…
Reference in New Issue