diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-02-28 09:13:06 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-02-28 09:13:06 +0100 |
commit | 19ea5dd3dfcf6c97e6480c3a4ac84a79d64b000b (patch) | |
tree | c264b809886fa4d8eadfe9642596c8e1327e52fb /icepack | |
parent | f2b254974a97998d30b042c4ab8246c4c31ec854 (diff) | |
parent | 798eb5255644efe784855855561a77b14e6f6c3d (diff) | |
download | icestorm-19ea5dd3dfcf6c97e6480c3a4ac84a79d64b000b.tar.gz icestorm-19ea5dd3dfcf6c97e6480c3a4ac84a79d64b000b.tar.bz2 icestorm-19ea5dd3dfcf6c97e6480c3a4ac84a79d64b000b.zip |
Merge pull request #31 from SebKuzminsky/spelling-fixes
fix some spelling mistakes in user-visible messages
Diffstat (limited to 'icepack')
-rw-r--r-- | icepack/icepack.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/icepack/icepack.cc b/icepack/icepack.cc index 6a9e05a..3b09936 100644 --- a/icepack/icepack.cc +++ b/icepack/icepack.cc @@ -328,7 +328,7 @@ void FpgaConfig::read_bits(std::istream &ifs) break; default: - error("Unkown command: 0x%02x 0x%02x\n", command, payload); + error("Unknown command: 0x%02x 0x%02x\n", command, payload); } break; @@ -381,7 +381,7 @@ void FpgaConfig::read_bits(std::istream &ifs) break; default: - error("Unkown command: 0x%02x 0x%02x\n", command, payload); + error("Unknown command: 0x%02x 0x%02x\n", command, payload); } } @@ -854,21 +854,21 @@ int FpgaConfig::chip_width() const { if (this->device == "1k") return 12; if (this->device == "8k") return 32; - panic("Unkown chip type '%s'.\n", this->device.c_str()); + panic("Unknown chip type '%s'.\n", this->device.c_str()); } int FpgaConfig::chip_height() const { if (this->device == "1k") return 16; if (this->device == "8k") return 32; - panic("Unkown chip type '%s'.\n", this->device.c_str()); + panic("Unknown chip type '%s'.\n", this->device.c_str()); } vector<int> FpgaConfig::chip_cols() const { if (this->device == "1k") return vector<int>({18, 54, 54, 42, 54, 54, 54}); if (this->device == "8k") return vector<int>({18, 54, 54, 54, 54, 54, 54, 54, 42, 54, 54, 54, 54, 54, 54, 54, 54}); - panic("Unkown chip type '%s'.\n", this->device.c_str()); + panic("Unknown chip type '%s'.\n", this->device.c_str()); } string FpgaConfig::tile_type(int x, int y) const @@ -886,7 +886,7 @@ string FpgaConfig::tile_type(int x, int y) const return "logic"; } - panic("Unkown chip type '%s'.\n", this->device.c_str()); + panic("Unknown chip type '%s'.\n", this->device.c_str()); } int FpgaConfig::tile_width(const string &type) const @@ -896,7 +896,7 @@ int FpgaConfig::tile_width(const string &type) const if (type == "ramb") return 42; if (type == "ramt") return 42; if (type == "io") return 18; - panic("Unkown tile type '%s'.\n", type.c_str()); + panic("Unknown tile type '%s'.\n", type.c_str()); } void FpgaConfig::cram_clear() |