-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
260b903
commit e605bbf
Showing
21 changed files
with
200 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
|
||
X=`which as68` | ||
if [ "$X" = "" ]; then | ||
(cd ../Applications/assembler; make -f Cross.6800) | ||
fi | ||
|
||
X=`which cc68` | ||
if [ "$X" = "" ]; then | ||
echo "CC68 is required: see https://github.com/EtchedPixels/CC6303/" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
|
||
X=`which cc65` | ||
if [ "$X" = "" ]; then | ||
echo "CC65 is required" | ||
else | ||
echo -n "cc65: " | ||
cc65 -V | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
|
||
X=`which cc65` | ||
if [ "$X" = "" ]; then | ||
echo "CC65 is required" | ||
else | ||
echo -n "cc65: " | ||
cc65 -V | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
|
||
X=`which as68` | ||
if [ "$X" = "" ]; then | ||
(cd ../Applications/assembler; make -f Cross.6800) | ||
fi | ||
|
||
X=`which cc68` | ||
if [ "$X" = "" ]; then | ||
echo "CC68 is required: see https://github.com/EtchedPixels/CC6303/" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
X=`which m68k-elf-gcc` | ||
if [ "$X" = "" ]; then | ||
echo "gcc: m68k-elf-gcc is required" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
|
||
X=`which as68` | ||
if [ "$X" = "" ]; then | ||
(cd ../Applications/assembler; make -f Cross.6800) | ||
fi | ||
|
||
X=`which cc68` | ||
if [ "$X" = "" ]; then | ||
echo "CC68 is required: see https://github.com/EtchedPixels/CC6303/" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
|
||
X=`which m6809-unknown-gcc` | ||
if [ "$X" = "" ]; then | ||
echo "GCC is required: see http://www.lwtools.ca/" | ||
fi | ||
X=`which lwasm` | ||
if [ "$X" = "" ]; then | ||
echo "LWTools is required: http://www.lwtools.ca/" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
X=`which m6811-elf-gcc` | ||
if [ "$X" = "" ]; then | ||
echo "gcc: m6811-elf-gcc is required" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
if [ -e /opt/cc85/bin/cc85 ]; then | ||
echo "cc85: installed" | ||
exit 0 | ||
fi | ||
|
||
cd Applications/assembler | ||
make -f Cross.8085 | ||
make -f Cross.8085 install | ||
|
||
echo "Now install the Fuzix Compiler Kit" | ||
echo "https://github.com/EtchedPixels/Fuzix-Compiler-Kit.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
if [ -e /opt/cc85/bin/cc85 ]; then | ||
echo "cc85: installed" | ||
exit 0 | ||
fi | ||
|
||
cd Applications/assembler | ||
make -f Cross.8085 | ||
make -f Cross.8085 install | ||
|
||
echo "Now install the Fuzix Compiler Kit" | ||
echo "https://github.com/EtchedPixels/Fuzix-Compiler-Kit.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
X=`which /opt/gcc-arm-eabi/bin/arm-none-eabi-gcc` | ||
if [ "$X" = "" ]; then | ||
echo "gcc: /opt/gcc-arm-eabi/bin/arm-none-eabi-gcc" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
X=`which /opt/gcc-arm-eabi/bin/arm-none-eabi-gcc` | ||
if [ "$X" = "" ]; then | ||
echo "gcc: /opt/gcc-arm-eabi/bin/arm-none-eabi-gcc" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
X=`xtensa-lx106-elf-gcc` | ||
if [ "$X" = "" ]; then | ||
echo "gcc: xtensa-lx106-elf-gcc is required" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
X=`which ns32k-pc532-netbsd-gcc` | ||
if [ "$X" = "" ]; then | ||
echo "gcc: ns32k-pc532-netbsd-gcc" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
X=`which riscv-unknown-elf-gcc` | ||
if [ "$X" = "" ]; then | ||
echo "gcc: riscv-unknown-elf-gcc" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
if [ -e /opt/cc9995/bin/cc9995 ]; then | ||
echo "cc9995: installed" | ||
exit 0 | ||
fi | ||
|
||
cd Applications/assembler | ||
make -f Cross.tms9995 | ||
make -f Cross.tms9995 install | ||
|
||
echo "Now install the ANSI PCC for TMS9995" | ||
echo "https://github.com/EtchedPixels/pcc-tms9995" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
if [ -e /opt/aswrx6/bin/ccwrx6 ]; then | ||
echo "ccwrx6: installed" | ||
exit 0 | ||
fi | ||
|
||
cd Applications/assembler | ||
make -f Cross.wrx6 | ||
make -f Cross.wrx6 install | ||
|
||
echo "Now install the Centurion cross compiler" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
if [ -e /opt/ccz80/bin/ccz80 ]; then | ||
echo "ccz80: installed" | ||
exit 0 | ||
fi | ||
|
||
cd Applications/assembler | ||
make -f Cross.z80 | ||
make -f Cross.z80 install | ||
|
||
echo "Now install the Fuzix Compiler Kit" | ||
echo "https://github.com/EtchedPixels/Fuzix-Compiler-Kit.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
if [ -e /opt/ccz80/bin/ccz80 ]; then | ||
echo "ccz80: installed" | ||
exit 0 | ||
fi | ||
|
||
cd Applications/assembler | ||
make -f Cross.z80 | ||
make -f Cross.z80 install | ||
|
||
echo "Now install the Fuzix Compiler Kit" | ||
echo "https://github.com/EtchedPixels/Fuzix-Compiler-Kit.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
(./build-z80) | ||
# | ||
# And check for SDCC TODO | ||
# | ||
echo "This target also requires the banked SDCC 3.8 is installed" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
if [ -e /opt/ccz80/bin/ccz80 ]; then | ||
echo "ccz80: installed" | ||
exit 0 | ||
fi | ||
|
||
cd Applications/assembler | ||
make -f Cross.z80 | ||
make -f Cross.z80 install | ||
|
||
echo "Now install the Fuzix Compiler Kit" | ||
echo "https://github.com/EtchedPixels/Fuzix-Compiler-Kit.git" |