-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Everything adapted to the latest z88dk!
- Loading branch information
1 parent
229ff12
commit 61910e6
Showing
103 changed files
with
3,262 additions
and
1,062 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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
@echo off | ||
set Z88DK_PATH=c:\z88dk10 | ||
set PATH=%Z88DK_PATH%\bin;%PATH% | ||
set Z88DK_PATH=c:\z88dk | ||
set PATH=%Z88DK_PATH%\bin.x86;%PATH% | ||
set Z80_OZFILES=%Z88DK_PATH%\Lib\ | ||
set ZCCCFG=%Z88DK_PATH%\Lib\Config\ | ||
zcc |
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,6 +1,5 @@ | ||
@echo off | ||
set Z88DK_PATH=c:\z88dk10 | ||
set PATH=%Z88DK_PATH%\bin;%PATH% | ||
set Z88DK_PATH=c:\z88dk | ||
set PATH=%Z88DK_PATH%\bin.x86;%PATH% | ||
set Z80_OZFILES=%Z88DK_PATH%\Lib\ | ||
set ZCCCFG=%Z88DK_PATH%\Lib\Config\ | ||
zcc |
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,6 +1,5 @@ | ||
@echo off | ||
set Z88DK_PATH=c:\z88dk10 | ||
set PATH=%Z88DK_PATH%\bin;%PATH% | ||
set Z88DK_PATH=c:\z88dk | ||
set PATH=%Z88DK_PATH%\bin.x86;%PATH% | ||
set Z80_OZFILES=%Z88DK_PATH%\Lib\ | ||
set ZCCCFG=%Z88DK_PATH%\Lib\Config\ | ||
zcc |
This file was deleted.
Oops, something went wrong.
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,6 +1,5 @@ | ||
@echo off | ||
set Z88DK_PATH=c:\z88dk10 | ||
set PATH=%Z88DK_PATH%\bin;%PATH% | ||
set Z88DK_PATH=c:\z88dk | ||
set PATH=%Z88DK_PATH%\bin.x86;%PATH% | ||
set Z80_OZFILES=%Z88DK_PATH%\Lib\ | ||
set ZCCCFG=%Z88DK_PATH%\Lib\Config\ | ||
zcc |
This file was deleted.
Oops, something went wrong.
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,6 +1,5 @@ | ||
@echo off | ||
set Z88DK_PATH=c:\z88dk10 | ||
set PATH=%Z88DK_PATH%\bin;%PATH% | ||
set Z88DK_PATH=c:\z88dk | ||
set PATH=%Z88DK_PATH%\bin.x86;%PATH% | ||
set Z80_OZFILES=%Z88DK_PATH%\Lib\ | ||
set ZCCCFG=%Z88DK_PATH%\Lib\Config\ | ||
zcc |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
MODULE zx82_crt0 | ||
INCLUDE "zcc_opt.def" | ||
XREF _main ; main() is always external to crt0 code | ||
|
||
IF !STACKPTR | ||
defc STACKPTR = $FFFF | ||
ENDIF | ||
IF !CRT_ORG_CODE | ||
defc CRT_ORG_CODE = 32768 | ||
ENDIF | ||
|
||
org CRT_ORG_CODE | ||
|
||
start: | ||
ld sp,STACKPTR | ||
jp _main |
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
Oops, something went wrong.