Modification of the fpga_spice_utils

This commit is contained in:
Baudouin Chauviere 2018-11-15 14:11:55 -07:00
parent c81d00bb51
commit f7d7a056da
1 changed files with 5 additions and 4 deletions

View File

@ -5014,7 +5014,7 @@ add_mux_scff_conf_bits_to_llist(int mux_size,
exit(1);
}
/* Fill the linked list */
/* Fill the linked list */
for (ibit = 0; ibit < num_mux_sram_bits; ibit++) {
cur_sram_orgz_info->conf_bit_head =
add_conf_bit_info_to_llist(cur_sram_orgz_info->conf_bit_head, cur_mem_bit + ibit,
@ -5167,7 +5167,7 @@ add_mux_membank_conf_bits_to_llist(int mux_size,
exit(1);
}
/* Fill the linked list */
/* Fill the linked list */
for (ibit = 0; ibit < num_conf_bits; ibit++) {
cur_sram_orgz_info->conf_bit_head =
add_conf_bit_info_to_llist(cur_sram_orgz_info->conf_bit_head, cur_mem_bit + ibit,
@ -5242,7 +5242,7 @@ add_sram_scff_conf_bits_to_llist(t_sram_orgz_info* cur_sram_orgz_info,
sram_bit[ibit]->val = sram_bits[ibit];
}
/* Fill the linked list */
/* Fill the linked list */
for (ibit = 0; ibit < num_sram_bits; ibit++) {
cur_sram_orgz_info->conf_bit_head =
add_conf_bit_info_to_llist(cur_sram_orgz_info->conf_bit_head, cur_mem_bit + ibit,
@ -5343,7 +5343,7 @@ void add_sram_membank_conf_bits_to_llist(t_sram_orgz_info* cur_sram_orgz_info, i
exit(1);
}
/* Fill the linked list */
/* Fill the linked list */
cur_sram_orgz_info->conf_bit_head =
add_conf_bit_info_to_llist(cur_sram_orgz_info->conf_bit_head, mem_index,
NULL, bl_bit, wl_bit,
@ -7481,3 +7481,4 @@ void rec_stats_spice_model_global_ports(t_spice_model* cur_spice_model,
}