diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-04-05 08:18:21 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-04-05 08:18:21 +0200 |
commit | 3920bf58d01ad9b34a7afba5bfa2f19ffff53240 (patch) | |
tree | 447ae39469ace34e0b0f6ac3206aa4883b5823d3 /backends/edif | |
parent | e4e6becba9259a125bfd2788d453f5ac33272d2f (diff) | |
download | yosys-3920bf58d01ad9b34a7afba5bfa2f19ffff53240.tar.gz yosys-3920bf58d01ad9b34a7afba5bfa2f19ffff53240.tar.bz2 yosys-3920bf58d01ad9b34a7afba5bfa2f19ffff53240.zip |
Fixed some typos
Diffstat (limited to 'backends/edif')
-rw-r--r-- | backends/edif/edif.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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_) { |