diff options
author | gatecat <gatecat@ds0.me> | 2021-12-22 13:17:55 +0000 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-12-22 13:21:18 +0000 |
commit | 2c43ac992f841eb57ac3003acc2f3a5736ce4591 (patch) | |
tree | c46930f6cc737ffd22a1eb1c8fab513f4a09f088 | |
parent | d2e193f2579e268ae5d54f2206ab621ce3465f80 (diff) | |
download | nextpnr-2c43ac992f841eb57ac3003acc2f3a5736ce4591.tar.gz nextpnr-2c43ac992f841eb57ac3003acc2f3a5736ce4591.tar.bz2 nextpnr-2c43ac992f841eb57ac3003acc2f3a5736ce4591.zip |
mistral: Update to latest enum name
Signed-off-by: gatecat <gatecat@ds0.me>
-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; }; |