f6dddaa380
A python script generates all possibilities for all supported instructions and compare zasm output with scas. After having fixed a couple of bugs, all tests pass!
24 lines
404 B
Bash
Executable File
24 lines
404 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
TMPFILE=$(mktemp)
|
|
SCAS=scas
|
|
ZASM=../emul/zasm
|
|
|
|
./geninstrs.py | \
|
|
while read line; do
|
|
echo $line | tee "${TMPFILE}"
|
|
EXPECTED=$($SCAS -o - "${TMPFILE}" | xxd)
|
|
ACTUAL=$(echo $line | $ZASM | xxd)
|
|
if [ "$ACTUAL" == "$EXPECTED" ]; then
|
|
echo ok
|
|
else
|
|
echo actual
|
|
echo $ACTUAL
|
|
echo expected
|
|
echo $EXPECTED
|
|
exit 1
|
|
fi
|
|
done
|