mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
11 lines
183 B
Bash
11 lines
183 B
Bash
|
#!/bin/bash
|
||
|
#Compiling sim
|
||
|
iverilog -y ../../fifos/hdl/ \
|
||
|
-y ../../common/hdl \
|
||
|
-y ../../memory/hdl \
|
||
|
-y ../hdl \
|
||
|
dv_ecfg.v
|
||
|
|
||
|
#Running sim
|
||
|
./a.out
|