2019-05-28 01:04:31 +10:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# no "set -e" because we test errors
|
|
|
|
|
|
|
|
ZASM=../../emul/zasm/zasm
|
|
|
|
|
|
|
|
chkerr() {
|
|
|
|
echo "Check that '$1' results in error $2"
|
|
|
|
${ZASM} <<< $1 > /dev/null
|
|
|
|
local res=$?
|
|
|
|
if [[ $res == $2 ]]; then
|
|
|
|
echo "Good!"
|
|
|
|
else
|
|
|
|
echo "$res != $2"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
chkerr "foo" 1
|
2019-05-28 01:22:38 +10:00
|
|
|
chkerr "ld a, foo" 2
|
2019-05-28 02:05:42 +10:00
|
|
|
chkerr "ld a, hl" 2
|
2019-05-28 03:44:53 +10:00
|
|
|
chkerr ".db foo" 2
|
2019-05-28 01:58:12 +10:00
|
|
|
chkerr "ld a," 3
|
|
|
|
chkerr "ld a, 'A" 3
|
2019-05-28 03:44:53 +10:00
|
|
|
chkerr ".db 0x42," 3
|
2019-05-28 02:12:21 +10:00
|
|
|
chkerr "ld a, 0x100" 4
|
2019-05-28 03:44:53 +10:00
|
|
|
chkerr ".db 0x100" 4
|