diff options
author | Andrew Zonenberg <azonenberg@drawersteak.com> | 2016-04-06 22:31:22 -0700 |
---|---|---|
committer | Andrew Zonenberg <azonenberg@drawersteak.com> | 2016-04-06 22:31:22 -0700 |
commit | f6a0f2cf73e8dde315493f113235bbfa27920391 (patch) | |
tree | 192dfc412a8a02287fc8fd63a24bc850d357cbd2 /backends | |
parent | c2b909c051edf189d6e1f807bb367c3c543dc058 (diff) | |
parent | ace462237f1223a41f6d29d1fe29652fcf435882 (diff) | |
download | yosys-f6a0f2cf73e8dde315493f113235bbfa27920391.tar.gz yosys-f6a0f2cf73e8dde315493f113235bbfa27920391.tar.bz2 yosys-f6a0f2cf73e8dde315493f113235bbfa27920391.zip |
Merge https://github.com/cliffordwolf/yosys
Diffstat (limited to 'backends')
-rw-r--r-- | backends/blif/blif.cc | 2 | ||||
-rw-r--r-- | backends/edif/edif.cc | 2 | ||||
-rw-r--r-- | backends/spice/spice.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/backends/blif/blif.cc b/backends/blif/blif.cc index f3b57765f..14b8b372e 100644 --- a/backends/blif/blif.cc +++ b/backends/blif/blif.cc @@ -540,7 +540,7 @@ struct BlifBackend : public Backend { if (module->processes.size() != 0) log_error("Found unmapped processes in module %s: unmapped processes are not supported in BLIF backend!\n", RTLIL::id2cstr(module->name)); if (module->memories.size() != 0) - log_error("Found munmapped emories in module %s: unmapped memories are not supported in BLIF backend!\n", RTLIL::id2cstr(module->name)); + log_error("Found unmapped memories in module %s: unmapped memories are not supported in BLIF backend!\n", RTLIL::id2cstr(module->name)); if (module->name == RTLIL::escape_id(top_module_name)) { BlifDumper::dump(*f, module, design, config); diff --git a/backends/edif/edif.cc b/backends/edif/edif.cc index f28adc56f..72bf07f53 100644 --- a/backends/edif/edif.cc +++ b/backends/edif/edif.cc @@ -153,7 +153,7 @@ struct EdifBackend : public Backend { if (module->processes.size() != 0) log_error("Found unmapped processes in module %s: unmapped processes are not supported in EDIF backend!\n", RTLIL::id2cstr(module->name)); if (module->memories.size() != 0) - log_error("Found munmapped emories in module %s: unmapped memories are not supported in EDIF backend!\n", RTLIL::id2cstr(module->name)); + log_error("Found unmapped memories in module %s: unmapped memories are not supported in EDIF backend!\n", RTLIL::id2cstr(module->name)); for (auto cell_it : module->cells_) { diff --git a/backends/spice/spice.cc b/backends/spice/spice.cc index 5e8cf85ee..bd54f16b9 100644 --- a/backends/spice/spice.cc +++ b/backends/spice/spice.cc @@ -218,7 +218,7 @@ struct SpiceBackend : public Backend { if (module->processes.size() != 0) log_error("Found unmapped processes in module %s: unmapped processes are not supported in SPICE backend!\n", log_id(module)); if (module->memories.size() != 0) - log_error("Found munmapped emories in module %s: unmapped memories are not supported in SPICE backend!\n", log_id(module)); + log_error("Found unmapped memories in module %s: unmapped memories are not supported in SPICE backend!\n", log_id(module)); if (module->name == RTLIL::escape_id(top_module_name)) { top_module = module; |