mirror of
https://github.com/mgcaret/of816.git
synced 2024-11-01 01:07:10 +00:00
13 lines
314 B
Bash
Executable File
13 lines
314 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script tokenizes FCode via toke and prepends a small header for identification
|
|
# by the ROM scanner (currently only implemented for the W65C816SXB).
|
|
|
|
cd `dirname ${0}`
|
|
if [ -r "${1}.fs" ]; then
|
|
toke "${1}.fs"
|
|
echo -n "MGFC" | cat - "${1}.fc" > ${1}.rom
|
|
else
|
|
echo "No source for ${1}!"
|
|
fi
|