diff options
author | Claire Xen <claire@clairexen.net> | 2021-04-21 12:24:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 12:24:07 +0200 |
commit | a5adb007742f0339b0a9663871fd86620d8f6a78 (patch) | |
tree | 191f8ae8212a68942e5d31d62c4135deb4d38df2 /tests | |
parent | dce037a62c5bda9a8256d271d39b06be366120e8 (diff) | |
parent | 46d3f03d27b4851b64f909ddbb663cbdac0fed70 (diff) | |
download | yosys-a5adb007742f0339b0a9663871fd86620d8f6a78.tar.gz yosys-a5adb007742f0339b0a9663871fd86620d8f6a78.tar.bz2 yosys-a5adb007742f0339b0a9663871fd86620d8f6a78.zip |
Merge pull request #2669 from YosysHQ/claire/ice40defaults
Add input default assignments to iCE40 cell library
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/arch/run-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/arch/run-test.sh b/tests/arch/run-test.sh index 170078a7f..5d923db56 100755 --- a/tests/arch/run-test.sh +++ b/tests/arch/run-test.sh @@ -11,7 +11,7 @@ for arch in ../../techlibs/*; do if [ "${defines[$arch_name]}" ]; then for def in ${defines[$arch_name]}; do echo -n "Test $path -D$def ->" - iverilog -t null -I$arch -D$def $path + iverilog -t null -I$arch -D$def -DNO_ICE40_DEFAULT_ASSIGNMENTS $path echo " ok" done else |