mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-30 16:03:17 +00:00
Major redesign of expr width/sign detecion (verilog/ast frontend)
This commit is contained in:
parent
e8da3ea7b6
commit
00a6c1d9a5
5 changed files with 189 additions and 37 deletions
|
@ -51,7 +51,7 @@ create_ref() {
|
|||
(
|
||||
set +x
|
||||
prefix="$2"
|
||||
xilver=$( ls -v /opt/Xilinx/ | tail -n1; )
|
||||
xilver=$( ls -v /opt/Xilinx/ | grep '^[0-9]' | tail -n1; )
|
||||
case "$( uname -m )" in
|
||||
x86_64)
|
||||
set --; . /opt/Xilinx/$xilver/ISE_DS/settings64.sh ;;
|
||||
|
@ -73,7 +73,7 @@ compile_and_run() {
|
|||
(
|
||||
set +x
|
||||
files=( "$@" )
|
||||
xilver=$( ls -v /opt/Xilinx/ | tail -n1; )
|
||||
xilver=$( ls -v /opt/Xilinx/ | grep '^[0-9]' | tail -n1; )
|
||||
case "$( uname -m )" in
|
||||
x86_64)
|
||||
set --; . /opt/Xilinx/$xilver/ISE_DS/settings64.sh ;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue