mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-25 00:29:22 +00:00
add Zargs to the collection
This commit is contained in:
parent
415c49dbc4
commit
8a8352dbbe
@ -322,6 +322,7 @@
|
|||||||
0000,WINTER.GAMES
|
0000,WINTER.GAMES
|
||||||
0000,WORLD.KARATE=World Karate Championship
|
0000,WORLD.KARATE=World Karate Championship
|
||||||
1001,XEVIOUS
|
1001,XEVIOUS
|
||||||
|
0000,ZARGS
|
||||||
1001,ZAXXON
|
1001,ZAXXON
|
||||||
0000,ZENITH
|
0000,ZENITH
|
||||||
|
|
||||||
|
BIN
res/TITLE.HGR/ZARGS
Normal file
BIN
res/TITLE.HGR/ZARGS
Normal file
Binary file not shown.
@ -288,6 +288,7 @@ WINTER.GAMES=Type(06),AuxType(4000),Access(C3)
|
|||||||
WOLFEN84=Type(06),AuxType(4000),Access(C3)
|
WOLFEN84=Type(06),AuxType(4000),Access(C3)
|
||||||
WORLD.KARATE=Type(06),AuxType(4000),Access(C3)
|
WORLD.KARATE=Type(06),AuxType(4000),Access(C3)
|
||||||
XEVIOUS=Type(06),AuxType(4000),Access(C3)
|
XEVIOUS=Type(06),AuxType(4000),Access(C3)
|
||||||
|
ZARGS=Type(06),AuxType(4000),Access(C3)
|
||||||
ZAXXON=Type(06),AuxType(4000),Access(C3)
|
ZAXXON=Type(06),AuxType(4000),Access(C3)
|
||||||
ZENITH=Type(06),AuxType(4000),Access(C3)
|
ZENITH=Type(06),AuxType(4000),Access(C3)
|
||||||
_FileInformation.txt=Type(06),AuxType(4000),Access(C3)
|
_FileInformation.txt=Type(06),AuxType(4000),Access(C3)
|
||||||
|
BIN
res/dsk/zargs 19k file PRODOS (san inc pack).po
Normal file
BIN
res/dsk/zargs 19k file PRODOS (san inc pack).po
Normal file
Binary file not shown.
@ -38,7 +38,6 @@ Roach Hotel
|
|||||||
The Space Ark
|
The Space Ark
|
||||||
The Snapper
|
The Snapper
|
||||||
Trick Shot
|
Trick Shot
|
||||||
Zargs [priority]
|
|
||||||
|
|
||||||
//TODO(flux-imaged but not woz)
|
//TODO(flux-imaged but not woz)
|
||||||
Fly Wars
|
Fly Wars
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
; YE OLDE GRAND UNIFIED MEMORY MAP
|
; YE OLDE GRAND UNIFIED MEMORY MAP
|
||||||
;
|
;
|
||||||
; LC RAM BANK 1
|
; LC RAM BANK 1
|
||||||
; D000..E880 - persistent data structures (gGlobalPrefsStore, gGamesListStore)
|
; D000..E8A3 - persistent data structures (gGlobalPrefsStore, gGamesListStore)
|
||||||
; ...unused...
|
; ...unused...
|
||||||
; E91D..FFF1 - main program code
|
; E91D..FFF1 - main program code
|
||||||
; FFF2..FFF9 - API functions and global constants available for main program
|
; FFF2..FFF9 - API functions and global constants available for main program
|
||||||
|
23
src/prelaunch/zargs.a
Normal file
23
src/prelaunch/zargs.a
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
;license:MIT
|
||||||
|
;(c) 2020 by qkumba
|
||||||
|
|
||||||
|
!cpu 6502
|
||||||
|
!to "build/PRELAUNCH/ZARGS",plain
|
||||||
|
*=$106
|
||||||
|
|
||||||
|
!source "src/prelaunch/common.a"
|
||||||
|
|
||||||
|
+ENABLE_ACCEL
|
||||||
|
lda #>(callback-1)
|
||||||
|
sta $51BB
|
||||||
|
lda #<(callback-1)
|
||||||
|
sta $51BE
|
||||||
|
jmp $800 ; decompress
|
||||||
|
|
||||||
|
callback
|
||||||
|
+DISABLE_ACCEL
|
||||||
|
jmp $6000
|
||||||
|
|
||||||
|
!if * > $1C0 {
|
||||||
|
!error "code is too large, ends at ", *
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user