mirror of
https://github.com/a2stuff/prodos-drivers.git
synced 2025-01-20 08:31:31 +00:00
19 lines
309 B
Bash
Executable File
19 lines
309 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run this from the ram.system directory
|
|
|
|
set -e
|
|
source "res/util.sh"
|
|
|
|
function verify {
|
|
diff "orig/$1" "out/$2" \
|
|
&& (cecho green "diff $2 good" ) \
|
|
|| (tput blink ; cecho red "DIFF $2 BAD" ; return 1)
|
|
}
|
|
|
|
|
|
#do_make clean
|
|
do_make all
|
|
|
|
verify "RAM.SYSTEM.SYS" "ram.system.SYS"
|