aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/gowin
diff options
context:
space:
mode:
authorPepijn de Vos <pepijndevos@gmail.com>2021-08-20 21:21:06 +0200
committerGitHub <noreply@github.com>2021-08-20 21:21:06 +0200
commitc2d358484fa5188be350ef1a8496f88b60d69ef7 (patch)
tree5b9c97a5a9b03629e2f035b6dcd1f9e4843271d2 /tests/arch/gowin
parentc2866780d2ee82334649237f77a89900fa0de4bc (diff)
downloadyosys-c2d358484fa5188be350ef1a8496f88b60d69ef7.tar.gz
yosys-c2d358484fa5188be350ef1a8496f88b60d69ef7.tar.bz2
yosys-c2d358484fa5188be350ef1a8496f88b60d69ef7.zip
Gowin: deal with active-low tristate (#2971)
* deal with active-low tristate * remove empty port * update sim models * add expected lut1 to tests
Diffstat (limited to 'tests/arch/gowin')
-rw-r--r--tests/arch/gowin/tribuf.ys3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/arch/gowin/tribuf.ys b/tests/arch/gowin/tribuf.ys
index 5855b9d97..eef7e379f 100644
--- a/tests/arch/gowin/tribuf.ys
+++ b/tests/arch/gowin/tribuf.ys
@@ -9,5 +9,6 @@ design -load postopt # load the post-opt design (otherwise equiv_opt loads the p
cd tristate # Constrain all select calls below inside the top module
#Internal cell type used. Need support it.
select -assert-count 1 t:TBUF
+select -assert-count 1 t:LUT1
select -assert-count 2 t:IBUF
-select -assert-none t:TBUF t:IBUF %% t:* %D
+select -assert-none t:TBUF t:IBUF t:LUT1 %% t:* %D \ No newline at end of file