diff options
author | gatecat <gatecat@ds0.me> | 2021-12-22 14:06:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-22 14:06:33 +0000 |
commit | de63b5b09a4d4373d872dd2bef3336760edad08f (patch) | |
tree | c46930f6cc737ffd22a1eb1c8fab513f4a09f088 | |
parent | d2e193f2579e268ae5d54f2206ab621ce3465f80 (diff) | |
parent | 2c43ac992f841eb57ac3003acc2f3a5736ce4591 (diff) | |
download | nextpnr-de63b5b09a4d4373d872dd2bef3336760edad08f.tar.gz nextpnr-de63b5b09a4d4373d872dd2bef3336760edad08f.tar.bz2 nextpnr-de63b5b09a4d4373d872dd2bef3336760edad08f.zip |
Merge pull request #887 from YosysHQ/gatecat/mistral-bit-update
mistral: Update to latest enum name
-rw-r--r-- | .github/workflows/mistral_ci.yml | 2 | ||||
-rw-r--r-- | mistral/bitstream.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/mistral_ci.yml b/.github/workflows/mistral_ci.yml index 7cf71621..64300d78 100644 --- a/.github/workflows/mistral_ci.yml +++ b/.github/workflows/mistral_ci.yml @@ -21,7 +21,7 @@ jobs: - name: Execute build nextpnr env: MISTRAL_PATH: ${{ github.workspace }}/deps/mistral - MISTRAL_REVISION: 0edeca112dda9bd463125feb869ddb7511d1acd9 + MISTRAL_REVISION: e039b595529ab573d9cb01c64ef927f9d81d63ce run: | source ./.github/ci/build_mistral.sh get_dependencies diff --git a/mistral/bitstream.cc b/mistral/bitstream.cc index e8c4dba7..eed508b3 100644 --- a/mistral/bitstream.cc +++ b/mistral/bitstream.cc @@ -123,7 +123,7 @@ struct MistralBitgen break; }; case CycloneV::FPLL: { - if (pt == CycloneV::EXTSWITCH || (pt == CycloneV::CLKEN && pi < 2)) + if (pt == CycloneV::EXTSWITCH0 || (pt == CycloneV::CLKEN && pi < 2)) cv->inv_set(pn2r.second, true); break; }; |