diff options
| author | D. Shah <dave@ds0.me> | 2021-02-05 18:41:35 +0000 |
|---|---|---|
| committer | D. Shah <dave@ds0.me> | 2021-02-05 19:19:17 +0000 |
| commit | 3e631fe2f415adeb0205eff866aaea74b8ef3ed8 (patch) | |
| tree | 70ef50fa3499ebdbfcd30515c2b889f556084774 /ice40 | |
| parent | 6575bfac3ec6cbf38f4525f997f07ccbaaa043f9 (diff) | |
| download | nextpnr-3e631fe2f415adeb0205eff866aaea74b8ef3ed8.tar.gz nextpnr-3e631fe2f415adeb0205eff866aaea74b8ef3ed8.tar.bz2 nextpnr-3e631fe2f415adeb0205eff866aaea74b8ef3ed8.zip | |
Add archArgs and archArgsToId to Arch API
Signed-off-by: D. Shah <dave@ds0.me>
Diffstat (limited to 'ice40')
| -rw-r--r-- | ice40/arch.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ice40/arch.h b/ice40/arch.h index 30a31432..dd771c0f 100644 --- a/ice40/arch.h +++ b/ice40/arch.h @@ -376,6 +376,7 @@ struct ArchArgs struct ArchRanges { + using ArchArgsType = ArchArgs; // Bels using AllBelsRange = BelRange; using TileBelsRange = BelRange; @@ -434,8 +435,8 @@ struct Arch : BaseArch<ArchRanges> std::string getChipName() const override; - ArchArgs archArgs() const { return args; } - IdString archArgsToId(ArchArgs args) const; + ArchArgs archArgs() const override { return args; } + IdString archArgsToId(ArchArgs args) const override; // ------------------------------------------------- |
