ice40: Make HeAP the default placer

Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
David Shah 2019-11-26 10:03:28 +00:00
parent 75f403db60
commit ff9d6b4f89

View File

@ -1245,7 +1245,11 @@ void Arch::assignCellInfo(CellInfo *cell)
}
}
#ifdef WITH_HEAP
const std::string Arch::defaultPlacer = "heap";
#else
const std::string Arch::defaultPlacer = "sa";
#endif
const std::vector<std::string> Arch::availablePlacers = {"sa",
#ifdef WITH_HEAP