#!/bin/csh -f

echo "Building alu_tb_stub"
$IVI_HOME/bin/iverilog -o alu_tb_stub.vvp alu.v alu_tb_stub.v 

if ($status) then
   echo "ERROR"
   exit(1)
else
   echo "Done"
endif


