#! /bin/sh

DEFSR=16384
DHISR=49152
DLOSR=16384

for file
do
	sed \
		-e "s/DEFSR/$DEFSR/" \
		-e "s/DHISR/$DHISR/" \
		-e "s/DLOSR/$DLOSR/"\
		${file} > /tmp/sed${$}
	mv /tmp/sed${$} ${file}
done
