add Arctic Fox to the collection

This commit is contained in:
Peter Ferrie 2020-05-19 21:43:53 -07:00
parent 5aee0cf867
commit b461cda33f
7 changed files with 30 additions and 2 deletions

View File

@ -11,6 +11,7 @@
0001,CIDER.SPIDER=Apple Cider Spider
0001,APPLE.PANIC
0001,AQUATRON
1000,ARCTIC.FOX
0001,ARDY.AARDVARK=Ardy the Aardvark
0000,ARGOS
1001,ARKANOID

BIN
res/TITLE.HGR/ARCTIC.FOX Normal file

Binary file not shown.

View File

@ -10,6 +10,7 @@ ALIEN.TYPHOON=Type(06),AuxType(4000),Access(C3)
ANKH=Type(06),AuxType(4000),Access(C3)
APPLE.PANIC=Type(06),AuxType(4000),Access(C3)
AQUATRON=Type(06),AuxType(4000),Access(C3)
ARCTIC.FOX=Type(06),AuxType(4000),Access(C3)
ARDY.AARDVARK=Type(06),AuxType(4000),Access(C3)
ARGOS=Type(06),AuxType(4000),Access(C3)
ARKANOID=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -1,6 +1,5 @@
//4am crack
The American Challenge
Arcticfox [priority]
C'est La Vie
Conquering Worlds
Dive Bomber

View File

@ -6,7 +6,7 @@
; YE OLDE GRAND UNIFIED MEMORY MAP
;
; LC RAM BANK 1
; D000..E722 - persistent data structures (gGlobalPrefsStore, gGamesListStore)
; D000..E758 - persistent data structures (gGlobalPrefsStore, gGamesListStore)
; ...unused...
; E92B..FFF1 - main program code
; FFF2..FFF9 - API functions and global constants available for main program

View File

@ -0,0 +1,27 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/ARCTIC.FOX",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #>(callback-1)
sta $4280
lda #<(callback-1)
sta $4283
jmp $3FFD ; decompress
callback
+LC_REBOOT
inc $3F4 ; force reboot
bit $C083
jsr DisableAccelerator
+READ_RAM1_WRITE_RAM1
jmp $1170
!if * > $1C0 {
!error "code is too large, ends at ", *
}