add A.E. to the collection

This commit is contained in:
Peter Ferrie 2020-03-28 16:25:32 -07:00
parent c3fb3473c7
commit 994c849599
6 changed files with 30 additions and 1 deletions

View File

@ -1,3 +1,4 @@
0001,A.E
0000,AGENT.U.S.A
1110,AIRHEART
0001,ALCAZAR

1
res/TITLE.HGR/A.E Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,4 @@
A.E=Type(06),AuxType(4000),Access(C3)
AGENT.U.S.A=Type(06),AuxType(4000),Access(C3)
ALCAZAR=Type(06),AuxType(4000),Access(C3)
ALIEN.AMBUSH=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -63,7 +63,6 @@ Battle Chess [DHGR]
Dino Smurf [priority]
//TODO(woz-imaged but uncracked)
A.E. [priority]
Alien Lander
Arcade Boot Camp
Beach-Head

27
src/prelaunch/a.e.a Normal file
View File

@ -0,0 +1,27 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/A.E",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $4D23
bne +
!fill $15
+ jsr $BD5 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$ad
sta $773 ; patch - don't decrease lives
+
+DISABLE_ACCEL
jmp $68E
!if * > $1C0 {
!error "code is too large, ends at ", *
}