-
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.
Merge pull request #11 from mojontwins/v5_new_z88dk
V5 new z88dk
- Loading branch information
Showing
864 changed files
with
45,488 additions
and
6,343 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,20 +1,42 @@ | ||
// MTE MK1 (la Churrera) v5.0 | ||
// Copyleft 2010-2014, 2020 by the Mojon Twins | ||
|
||
#define SFX_START 0 | ||
#define SFX_BREAKABLE_HIT 1 | ||
#define SFX_BREAKABLE_BREAK 2 | ||
#define SFX_PUSH_BOX 3 | ||
#define SFX_OPEN_LOCK 3 | ||
#define SFX_SHOOT 4 | ||
#define SFX_OBJECT_GET 5 | ||
#define SFX_KILL_ENEMY_STEP 6 | ||
#define SFX_KILL_ENEMY_SHOOT 6 | ||
#define SFX_HIT_ENEMY 7 | ||
#define SFX_ONE_OBJECT_GET 8 | ||
#define SFX_ONE_OBJECT_WRONG 9 | ||
#define SFX_KEY_GET 10 | ||
#define SFX_REFILL_GET 11 | ||
#define SFX_JUMP 12 | ||
#define SFX_SPIKES 13 | ||
#define SFX_ENEMY_HIT 14 | ||
#ifdef USE_ARKOS_PLAYER | ||
#define SFX_START 1 | ||
#define SFX_BREAKABLE_HIT 1 | ||
#define SFX_BREAKABLE_BREAK 2 | ||
#define SFX_PUSH_BOX 3 | ||
#define SFX_OPEN_LOCK 3 | ||
#define SFX_SHOOT 4 | ||
#define SFX_OBJECT_GET 5 | ||
#define SFX_KILL_ENEMY_STEP 6 | ||
#define SFX_KILL_ENEMY_SHOOT 6 | ||
#define SFX_HIT_ENEMY 7 | ||
#define SFX_ONE_OBJECT_GET 8 | ||
#define SFX_ONE_OBJECT_WRONG 9 | ||
#define SFX_KEY_GET 4 | ||
#define SFX_REFILL_GET 11 | ||
#define SFX_JUMP 2 | ||
#define SFX_SPIKES 2 | ||
#define SFX_ENEMY_HIT 8 | ||
|
||
#else | ||
#define SFX_START 0 | ||
#define SFX_BREAKABLE_HIT 1 | ||
#define SFX_BREAKABLE_BREAK 2 | ||
#define SFX_PUSH_BOX 3 | ||
#define SFX_OPEN_LOCK 3 | ||
#define SFX_SHOOT 4 | ||
#define SFX_OBJECT_GET 5 | ||
#define SFX_KILL_ENEMY_STEP 6 | ||
#define SFX_KILL_ENEMY_SHOOT 6 | ||
#define SFX_HIT_ENEMY 7 | ||
#define SFX_ONE_OBJECT_GET 8 | ||
#define SFX_ONE_OBJECT_WRONG 9 | ||
#define SFX_KEY_GET 10 | ||
#define SFX_REFILL_GET 11 | ||
#define SFX_JUMP 12 | ||
#define SFX_SPIKES 13 | ||
#define SFX_ENEMY_HIT 14 | ||
|
||
#endif |
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 |
Oops, something went wrong.