diff options
author | David Shah <dave@ds0.me> | 2021-01-28 08:13:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-28 08:13:21 +0000 |
commit | a95d6678b1d353a1606e377e1833dec54ad4ee65 (patch) | |
tree | 7a8bfec06e47e9319d36a57ff71022be3cfa3269 | |
parent | 6a7fa4b402b2840b3c2b85a58e9f1d2ea33e6cd3 (diff) | |
parent | 2700687c00c98cbbddd4f131e6e8849067e02ab8 (diff) | |
download | nextpnr-a95d6678b1d353a1606e377e1833dec54ad4ee65.tar.gz nextpnr-a95d6678b1d353a1606e377e1833dec54ad4ee65.tar.bz2 nextpnr-a95d6678b1d353a1606e377e1833dec54ad4ee65.zip |
Merge pull request #550 from pepijndevos/gw1n4
Gowin: Add GW1N-4 support
-rw-r--r-- | .cirrus/Dockerfile.ubuntu20.04 | 2 | ||||
-rw-r--r-- | gowin/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.cirrus/Dockerfile.ubuntu20.04 b/.cirrus/Dockerfile.ubuntu20.04 index 188cd8f4..70d0e0ce 100644 --- a/.cirrus/Dockerfile.ubuntu20.04 +++ b/.cirrus/Dockerfile.ubuntu20.04 @@ -64,4 +64,4 @@ RUN set -e -x ;\ PATH=$PATH:$HOME/.cargo/bin cargo install --path prjoxide RUN set -e -x ;\ - pip3 install apycula==0.0.1a3 + pip3 install apycula==0.0.1a5 diff --git a/gowin/CMakeLists.txt b/gowin/CMakeLists.txt index 17484b29..695ef884 100644 --- a/gowin/CMakeLists.txt +++ b/gowin/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.5) project(chipdb-gowin NONE) -set(ALL_GOWIN_DEVICES GW1N-1 GW1N-9) +set(ALL_GOWIN_DEVICES GW1N-1 GW1N-4 GW1N-9) set(GOWIN_DEVICES ${ALL_GOWIN_DEVICES} CACHE STRING "Include support for these Gowin devices (available: ${ALL_GOWIN_DEVICES})") message(STATUS "Enabled Gowin devices: ${GOWIN_DEVICES}") |