mirror of https://github.com/openXC7/prjxray.git
14 lines
298 B
Bash
14 lines
298 B
Bash
#!/bin/bash
|
|
# Generic generate.sh for scripts that use top.py to generate top.v
|
|
# and then use generate.py for segment generation
|
|
|
|
set -ex
|
|
|
|
export FUZDIR=$PWD
|
|
source ${XRAY_GENHEADER}
|
|
|
|
echo '`define SEED 32'"'h$(echo $1 | md5sum | cut -c1-8)" > setseed.vh
|
|
|
|
make -f $XRAY_DIR/utils/top_generate.mk
|
|
|