diff options
author | gatecat <gatecat@ds0.me> | 2022-03-30 15:39:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-30 15:39:10 +0100 |
commit | 5850cb633698a4c07ff9eb6612a2068f4c490965 (patch) | |
tree | 0a0b9fef472eb480a39d02683d42fe113acf0817 /nexus/arch.h | |
parent | 84c5b578d4479a57f3fef3c5ebef53bdfacf04ff (diff) | |
parent | b9e76d1bcd556da7b25d58ff9aa6134b4d81ab30 (diff) | |
download | nextpnr-5850cb633698a4c07ff9eb6612a2068f4c490965.tar.gz nextpnr-5850cb633698a4c07ff9eb6612a2068f4c490965.tar.bz2 nextpnr-5850cb633698a4c07ff9eb6612a2068f4c490965.zip |
Merge pull request #952 from antmicro/mdudek/nexus_pll
Nexus: Fixed OSCA parameters, add pll default parameters
Diffstat (limited to 'nexus/arch.h')
-rw-r--r-- | nexus/arch.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nexus/arch.h b/nexus/arch.h index ea4e9f5b..323dcacd 100644 --- a/nexus/arch.h +++ b/nexus/arch.h @@ -1408,7 +1408,8 @@ struct Arch : BaseArch<ArchRanges> // ------------------------------------------------- // Parse a possibly-Lattice-style (C literal in Verilog string) style parameter - Property parse_lattice_param(const CellInfo *ci, IdString prop, int width, int64_t defval) const; + Property parse_lattice_param_from_cell(const CellInfo *ci, IdString prop, int width, int64_t defval) const; + Property parse_lattice_param(const Property &val, IdString prop, int width, const char* ci="") const; // ------------------------------------------------- |