The VICE emulators just keep going if they can't find the vicerc.
Chris Pressey
6 years ago
5 | 5 |
shift 1
|
6 | 6 |
if [ "X$arch" = "Xc64" ]; then
|
7 | 7 |
output_format='c64-basic-prg'
|
8 | |
if [ -e vicerc ]; then
|
9 | |
emu="x64 -config vicerc"
|
10 | |
else
|
11 | |
emu="x64"
|
12 | |
fi
|
|
8 |
emu="x64 -config vicerc"
|
13 | 9 |
elif [ "X$arch" = "Xvic20" ]; then
|
14 | 10 |
output_format='vic20-basic-prg'
|
15 | |
if [ -e vicerc ]; then
|
16 | |
emu="xvic -config vicerc"
|
17 | |
else
|
18 | |
emu="xvic"
|
19 | |
fi
|
|
11 |
emu="xvic -config vicerc"
|
20 | 12 |
else
|
21 | 13 |
echo $usage && exit 1
|
22 | 14 |
fi
|
5 | 5 |
shift 1
|
6 | 6 |
if [ "X$arch" = "Xc64" ]; then
|
7 | 7 |
output_format='c64-basic-prg'
|
8 | |
if [ -e vicerc ]; then
|
9 | |
emu="x64 -config vicerc"
|
10 | |
else
|
11 | |
emu="x64"
|
12 | |
fi
|
|
8 |
emu="x64 -config vicerc"
|
13 | 9 |
elif [ "X$arch" = "Xvic20" ]; then
|
14 | 10 |
output_format='vic20-basic-prg'
|
15 | |
if [ -e vicerc ]; then
|
16 | |
emu="xvic -config vicerc"
|
17 | |
else
|
18 | |
emu="xvic"
|
19 | |
fi
|
|
11 |
emu="xvic -config vicerc"
|
20 | 12 |
elif [ "X$arch" = "Xatari2600" ]; then
|
21 | 13 |
output_format='atari2600-cart'
|
22 | 14 |
emu='stella'
|