mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
17 lines
297 B
Bash
Executable File
17 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DV=../../common/dv/dv_top.v
|
|
LIBS=$OH_HOME/common/dv/libs.cmd
|
|
|
|
declare -a core_arr=("dut_oh_debouncer")
|
|
declare -a cfg_arr=("")
|
|
|
|
for core in "${core_arr[@]}"
|
|
do
|
|
for cfg in "${cfg_arr[@]}"
|
|
do
|
|
iverilog -g2005 -DTARGET_SIM=1 $cfg $core.v $DV -f $LIBS -o $core.bin
|
|
done
|
|
|
|
done
|