Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/synth_fpga.cc
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ struct SynthFpgaPass : public ScriptPass {
//
JsonNode *root_path = NULL;
if (root.data_dict.count("root_path") == 0) {
log("NOTE: no 'root_path' section found in the config file : %s.\n",
log("NOTE: no 'root_path' section found in the config file: %s.\n",
config_file.c_str());
} else {
root_path = root.data_dict.at("root_path");
Expand Down Expand Up @@ -1036,7 +1036,7 @@ struct SynthFpgaPass : public ScriptPass {
}
JsonNode *dff_models = flipflops->data_dict.at("models");
if (dff_models->type != 'D') {
log_error("'models' associated to 'flipflops' must be a dictionnary.\n");
log_error("'models' associated to 'flipflops' must be a dictionary.\n");
}

for (auto it : dff_models->data_dict) {
Expand Down Expand Up @@ -1064,7 +1064,7 @@ struct SynthFpgaPass : public ScriptPass {
for (auto it : dff_legalize_list->data_array) {
JsonNode *legal_flop = it;
if (legal_flop->type != 'S') {
log_error("Array associated to DFF 'legalize_list' must be contain "
log_error("Array associated to DFF 'legalize_list' must contain "
"only strings.\n");
}
string legal_flop_str = legal_flop->data_string;
Expand Down