diff --git a/openfpga/src/fpga_verilog/verilog_top_testbench.cpp b/openfpga/src/fpga_verilog/verilog_top_testbench.cpp
index 0f5640618..27f714957 100644
--- a/openfpga/src/fpga_verilog/verilog_top_testbench.cpp
+++ b/openfpga/src/fpga_verilog/verilog_top_testbench.cpp
@@ -1154,17 +1154,18 @@ void print_verilog_top_testbench_configuration_chain_bitstream(std::fstream& fp,
/* Attention: when the fast configuration is enabled, we will start from the first bit '1'
* This requires a reset signal (as we forced in the first clock cycle)
*/
- bool first_bit_one = false;
+ bool start_config = false;
for (const FabricBitId& bit_id : fabric_bitstream.bits()) {
- if (true == bitstream_manager.bit_value(fabric_bitstream.config_bit(bit_id))) {
- first_bit_one = true;
+ if ( (false == start_config)
+ && (true == bitstream_manager.bit_value(fabric_bitstream.config_bit(bit_id)))) {
+ start_config = true;
}
/* In fast configuration mode, we do not output anything
* until we have to (the first bit '1' detected)
*/
if ( (true == fast_configuration)
- && (false == first_bit_one)) {
+ && (false == start_config)) {
continue;
}
diff --git a/openfpga_flow/openfpga_arch/k6_frac_N10_adder_register_scan_chain_depop50_spypad_40nm_openfpga.xml b/openfpga_flow/openfpga_arch/k6_frac_N10_adder_register_scan_chain_depop50_spypad_40nm_openfpga.xml
index 0fa650846..7f31c435f 100644
--- a/openfpga_flow/openfpga_arch/k6_frac_N10_adder_register_scan_chain_depop50_spypad_40nm_openfpga.xml
+++ b/openfpga_flow/openfpga_arch/k6_frac_N10_adder_register_scan_chain_depop50_spypad_40nm_openfpga.xml
@@ -242,7 +242,7 @@
-
+
@@ -277,7 +277,7 @@
-
+
@@ -310,7 +310,7 @@
-
+
diff --git a/openfpga_flow/tasks/spypad/config/task.conf b/openfpga_flow/tasks/spypad/config/task.conf
index 51197d1f7..13233e400 100644
--- a/openfpga_flow/tasks/spypad/config/task.conf
+++ b/openfpga_flow/tasks/spypad/config/task.conf
@@ -8,7 +8,7 @@
[GENERAL]
run_engine=openfpga_shell
-openfpga_shell_template=${PATH:OPENFPGA_PATH}/openfpga_flow/OpenFPGAShellScripts/example_script.openfpga
+openfpga_shell_template=${PATH:OPENFPGA_PATH}/openfpga_flow/OpenFPGAShellScripts/fast_configuration_example_script.openfpga
power_tech_file = ${PATH:OPENFPGA_PATH}/openfpga_flow/tech/PTM_45nm/45nm.xml
power_analysis = true
spice_output=false