1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-13 23:45:00 +00:00

Merge pull request #708 from Ravenslofty/mistral-getchipname

mistral: add getChipName
This commit is contained in:
gatecat
2021-05-15 22:59:46 +01:00
committed by GitHub

View File

@@ -291,7 +291,7 @@ struct Arch : BaseArch<ArchRanges>
Arch(ArchArgs args);
ArchArgs archArgs() const { return args; }
std::string getChipName() const override { return std::string{"TODO: getChipName"}; }
std::string getChipName() const override { return args.device; }
// -------------------------------------------------
int getGridDimX() const override { return cyclonev->get_tile_sx(); }