diff options
author | gatecat <gatecat@ds0.me> | 2021-05-15 22:59:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 22:59:46 +0100 |
commit | 179ae683cccede93dae9ef76ab82bd2617b224c7 (patch) | |
tree | 4cd1d989c0da4620a9608af97f027b2408b9da26 | |
parent | 47b4e42b1c0b849dc73a06357ad7e5cb24e0cbd7 (diff) | |
parent | b81ba2d6c2d20a959a4f88fc1538d40cc9be6ebf (diff) | |
download | nextpnr-179ae683cccede93dae9ef76ab82bd2617b224c7.tar.gz nextpnr-179ae683cccede93dae9ef76ab82bd2617b224c7.tar.bz2 nextpnr-179ae683cccede93dae9ef76ab82bd2617b224c7.zip |
Merge pull request #708 from Ravenslofty/mistral-getchipname
mistral: add getChipName
-rw-r--r-- | mistral/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mistral/arch.h b/mistral/arch.h index 5913a615..83971822 100644 --- a/mistral/arch.h +++ b/mistral/arch.h @@ -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(); } |