aboutsummaryrefslogtreecommitdiffstats
path: root/icepack
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2017-11-20 09:43:54 +0000
committerDavid Shah <davey1576@gmail.com>2017-11-20 09:43:54 +0000
commitda7a2a9d0db95d6a172286eaddd6e930a27ea752 (patch)
treee045aeca40b61e9e1a316dfb3f7daafa34c42ef8 /icepack
parent8c0fe225ca925caed45f721303b55386b8944e62 (diff)
downloadicestorm-da7a2a9d0db95d6a172286eaddd6e930a27ea752.tar.gz
icestorm-da7a2a9d0db95d6a172286eaddd6e930a27ea752.tar.bz2
icestorm-da7a2a9d0db95d6a172286eaddd6e930a27ea752.zip
Fix whitespace and a couple of typos
Diffstat (limited to 'icepack')
-rw-r--r--icepack/icepack.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/icepack/icepack.cc b/icepack/icepack.cc
index fd3050e..b67241f 100644
--- a/icepack/icepack.cc
+++ b/icepack/icepack.cc
@@ -1013,7 +1013,7 @@ vector<int> FpgaConfig::chip_cols() const
{
if (this->device == "384") return vector<int>({18, 54, 54, 54, 54});
if (this->device == "1k") return vector<int>({18, 54, 54, 42, 54, 54, 54});
- // Its ipconect or Mutiplier block, five logic, ram, six logic.
+ // Its IPConnect or Mutiplier block, five logic, ram, six logic.
if (this->device == "5k") return vector<int>({54, 54, 54, 54, 54, 54, 42, 54, 54, 54, 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("Unknown chip type '%s'.\n", this->device.c_str());
@@ -1022,7 +1022,7 @@ vector<int> FpgaConfig::chip_cols() const
string FpgaConfig::tile_type(int x, int y) const
{
if ((x == 0 || x == this->chip_width()+1) && (y == 0 || y == this->chip_height()+1)) return "corner";
- // The sides on the 5k devices are ipconect or DSP tiles
+ // The sides on the 5k devices are IPConnect or DSP tiles
if (this->device == "5k" && (x == 0 || x == this->chip_width()+1)) {
if( (y == 5) || (y == 10) || (y == 15) || (y == 23)) //check ordering here, tile 23-26 might be reversed
return "dsp0";