diff options
author | David Shah <dave@ds0.me> | 2019-11-18 14:28:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-18 14:28:40 +0000 |
commit | d08e2ade889b709af124d4332a60c6b504a120a2 (patch) | |
tree | e30b28b2d5f6a1925d8912c80badbcc34d291bba /common/nextpnr.h | |
parent | e270fcd1dbc0e7d81a6775aca3472689ef39e7ef (diff) | |
parent | f2b9cc6d2311c437d740873111e806e9e5078736 (diff) | |
download | nextpnr-d08e2ade889b709af124d4332a60c6b504a120a2.tar.gz nextpnr-d08e2ade889b709af124d4332a60c6b504a120a2.tar.bz2 nextpnr-d08e2ade889b709af124d4332a60c6b504a120a2.zip |
Merge pull request #345 from YosysHQ/dave/sdf
Improve handling of top level IO and add SDF support
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r-- | common/nextpnr.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index bae828f6..24f6948b 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -808,6 +808,11 @@ struct Context : Arch, DeterministicRNG // -------------------------------------------------------------- + // provided by sdf.cc + void writeSDF(std::ostream &out, bool cvc_mode = false) const; + + // -------------------------------------------------------------- + uint32_t checksum() const; void check() const; |