1
0
mirror of https://github.com/DoctorWkt/unix-jun72.git synced 2026-02-04 23:55:20 +00:00

- hack to work around unsigned division in v7 assembler that behaves

differently than division in v2 assembler.  This one is fragile and
  will break if the labels move around...
This commit is contained in:
tim.newsham
2008-05-02 22:35:14 +00:00
parent 62c98d5ab8
commit 0f3f3ee465

View File

@@ -21,9 +21,11 @@ for f in rebuilt/u?.s ; do
b=`basename $f`
if [ $COLD = 1 ] ; then
sed -e 's/.*init by copy.*/4;4;unkni;0;fpsym;0/' \
-e 's/\[systm-inode\]\\\//-109./' \
-e 's/cold = 0/cold = 1/' < $f > build/$b
else
sed -e 's/.*init by copy.*/4;4;unkni;0;fpsym;0/' < $f > build/$b
sed -e 's/.*init by copy.*/4;4;unkni;0;fpsym;0/' \
-e 's/\[systm-inode\]\\\//-109./' < $f > build/$b
fi
done