-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6800: start to put bits together for 6800 testing
- Loading branch information
1 parent
cc09ac2
commit 0f1b9e1
Showing
9 changed files
with
141 additions
and
93 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
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
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
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
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 |
---|---|---|
|
@@ -47,8 +47,6 @@ start: | |
stab @zero+1 | ||
incb | ||
stab @one+1 | ||
ldab #0x7E | ||
stab @jmptmp | ||
jsr ___stdio_init_vars | ||
tsx | ||
inx | ||
|
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 |
---|---|---|
|
@@ -32,4 +32,4 @@ done | |
set -e | ||
# | ||
# With | ||
cc68 -m6800 -tfuzix -s $ARGS -o "$TARGET" -M | ||
fcc -s -m6800 $ARGS -o "$TARGET" -M |
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
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
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 |
---|---|---|
@@ -1,12 +1,7 @@ | ||
#!/bin/sh | ||
|
||
X=`which as68` | ||
X=`which fcc` | ||
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/" | ||
echo "fcc is required: see https://github.com/EtchedPixels/FuzixCompilerKit/" | ||
exit 1 | ||
fi |