File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
RTL_testcases/RS_FPGA_PRIMITIVES_new/BOOT_CLOCK_primitive_inst Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -260,6 +260,10 @@ parse_cga exit 1; }
260
260
else
261
261
echo " "
262
262
fi
263
+ echo " clear_simulation_files" >> raptor_tcl.tcl
264
+ echo " setup_lec_sim" >> raptor_tcl.tcl
265
+ echo " simulate gate icarus" >> raptor_tcl.tcl || echo " simulate gate verilator" >> raptor_tcl.tcl
266
+ [ " $tool_name " = " iverilog" ] && echo " simulate pnr icarus" >> raptor_tcl.tcl || echo " simulate pnr verilator" >> raptor_tcl.tcl
263
267
echo " sta" >> raptor_tcl.tcl
264
268
echo " power" >> raptor_tcl.tcl
265
269
echo " bitstream $bitstream " >> raptor_tcl.tcl
Original file line number Diff line number Diff line change 1
1
module BOOT_CLOCK_primitive_inst (
2
2
input wire clk1, // Source clock domain clock
3
3
input wire async_signal, // Asynchronous signal to be synchronized
4
- output reg sync_signal, // Synchronized signal
4
+ output reg sync_signal = 0 , // Synchronized signal
5
5
output reg O_BOOT_CLOCK // Clock output
6
6
);
7
7
You can’t perform that action at this time.
0 commit comments