1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-02-07 06:44:09 +08:00
oh/scripts/build.sh

22 lines
472 B
Bash
Raw Normal View History

2016-03-08 15:49:15 -05:00
#!/bin/bash
############################################################################
# Icarus Verilog build script for OH!
2016-03-22 08:27:59 -04:00
#
2016-03-08 15:49:15 -05:00
# Requires $OH_HOME variable to be set
2016-03-22 08:27:59 -04:00
#
# Example: ./scripts/build.sh elink/hdl/dut_elink.v
#
2016-03-08 15:49:15 -05:00
############################################################################
##############################
#Build
###############################
iverilog -g2005\
-DTARGET_SIM=1\
-DCFG_ASIC=0\
-f $OH_HOME/scripts/libs.cmd \
-o dut.bin $1