14 lines
304 B
Bash
Executable file
14 lines
304 B
Bash
Executable file
#!/bin/sh
|
|
|
|
kestrel() {
|
|
dune exec -- kestrel "${@}"
|
|
}
|
|
|
|
mkdir -p roms/
|
|
kestrel boot/xh.rom < boot/drifloon.rom.txt > roms/drifloon.rom
|
|
kestrel roms/drifloon.rom < boot/drifblim.tal > roms/drifblim.rom
|
|
|
|
# Run opctest
|
|
kestrel roms/drifblim.rom boot/opctest.tal roms/opctest.rom
|
|
kestrel roms/opctest.rom
|
|
|