blob: 3f8729c7f6dfbb065178f11da3ea2cf3e2ce2712 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env sh
set -ex
rm -rf tests/out/
mkdir -p tests/out/
cargo build
./target/debug/nasm -c nrom -Werror -o tests/out/sprite.nes tests/src/sprite.s
diff tests/out/sprite.nes tests/bin/sprite.nes
./target/debug/nasm -c unrom -o tests/out/chr-ram.nes tests/src/chr-ram.s
diff tests/out/chr-ram.nes tests/bin/chr-ram.nes
./target/debug/nasm -c nrom -Werror -o tests/out/flicker.nes tests/src/flicker/flicker.s
diff tests/out/flicker.nes tests/bin/flicker.nes
|