12 lines
122 B
Bash
12 lines
122 B
Bash
|
|
#! /usr/bin/env bash
|
||
|
|
#
|
||
|
|
# test stuff
|
||
|
|
|
||
|
|
set -ex
|
||
|
|
|
||
|
|
pushd python/sw_pll
|
||
|
|
python sw_pll_sim.py LUT
|
||
|
|
python sw_pll_sim.py SDM
|
||
|
|
popd
|
||
|
|
|