aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.cc
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2020-07-08 14:16:00 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2020-07-08 14:16:00 +0200
commit1fae965cbb4df720b7bd2de69860da3a34397b88 (patch)
tree3ca91db4a6a3252f8ec77c94f4b0e653e36e7327 /ice40/arch.cc
parent32ddc94b4f5735b8c28edb1f311533b360888a2a (diff)
downloadnextpnr-1fae965cbb4df720b7bd2de69860da3a34397b88.tar.gz
nextpnr-1fae965cbb4df720b7bd2de69860da3a34397b88.tar.bz2
nextpnr-1fae965cbb4df720b7bd2de69860da3a34397b88.zip
Use proper names in GUI
Diffstat (limited to 'ice40/arch.cc')
-rw-r--r--ice40/arch.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index 306c52c2..74674799 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -122,29 +122,29 @@ Arch::Arch(ArchArgs args) : args(args)
std::string Arch::getChipName() const
{
if (args.type == ArchArgs::LP384) {
- return "Lattice LP384";
+ return "Lattice iCE40LP384";
} else if (args.type == ArchArgs::LP1K) {
- return "Lattice LP1K";
+ return "Lattice iCE40LP1K";
} else if (args.type == ArchArgs::HX1K) {
- return "Lattice HX1K";
+ return "Lattice iCE40HX1K";
} else if (args.type == ArchArgs::UP3K) {
- return "Lattice UP3K";
+ return "Lattice iCE40UP3K";
} else if (args.type == ArchArgs::UP5K) {
- return "Lattice UP5K";
+ return "Lattice iCE40UP5K";
} else if (args.type == ArchArgs::U1K) {
- return "Lattice U1K";
+ return "Lattice iCE5LP1K";
} else if (args.type == ArchArgs::U2K) {
- return "Lattice U2K";
+ return "Lattice iCE5LP2K";
} else if (args.type == ArchArgs::U4K) {
- return "Lattice U4K";
+ return "Lattice iCE5LP4K";
} else if (args.type == ArchArgs::LP4K) {
- return "Lattice LP4K";
+ return "Lattice iCE40LP4K";
} else if (args.type == ArchArgs::LP8K) {
- return "Lattice LP8K";
+ return "Lattice iCE40LP8K";
} else if (args.type == ArchArgs::HX4K) {
- return "Lattice HX4K";
+ return "Lattice iCE40HX4K";
} else if (args.type == ArchArgs::HX8K) {
- return "Lattice HX8K";
+ return "Lattice iCE40HX8K";
} else {
log_error("Unknown chip\n");
}