mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
de63dfd907
-stdcells moved to asiclib, doesn't make sense to be vectorized -common is a stupid name, renamed as stdlib
14 lines
180 B
Bash
Executable File
14 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#ARGUMENTS
|
|
#$1=name of "dut*.bin" to simulate
|
|
#$2=path to test to run
|
|
|
|
#Uses BASH $RANDOM variable to set seed
|
|
|
|
rm test_0.emf
|
|
ln -s $2 test_0.emf
|
|
./$1 +SEED=$RANDOM
|
|
|
|
|