#!/bin/bash

dsp_file=$1
bin_file=$2

sed s/"dsp_file"/$dsp_file/ main.c > tmp.c
gcc tmp.c compiler.o -o tmp

./tmp $bin_file

rm -f tmp tmp.c 
