add Glider to the collection

This commit is contained in:
Peter Ferrie
2025-03-23 18:25:57 -07:00
parent 6c09fd7ba5
commit 76b60ca168
5 changed files with 28 additions and 0 deletions
+1
View File
@@ -213,6 +213,7 @@
000101,GENIUS.2=Genius 2
000100,GENIUS.3=Genius 3
100601,GHOSTBUSTERS=Ghostbusters
000100,GLIDER=Glider
000100,GLUTTON=Glutton
000111,GOLD.RUSH=Gold Rush
000101,GORGON=Gorgon
Binary file not shown.
Binary file not shown.
Binary file not shown.
+27
View File
@@ -0,0 +1,27 @@
;license:MIT
;(c) 2025 by qkumba
!cpu 6502
!to "build/PRELAUNCH.INDEXED/GLIDER",plain
*=$106
!source "src/macros.a"
+ENABLE_ACCEL
lda #$60
sta $818
jsr $800 ; decompress
+READ_RAM2_NO_WRITE
lda MachineStatus
and #CHEATS_ENABLED
beq +
lda #$AD
sta $D2B ; don't decrease lives
+
jsr DisableAccelerator
+READ_ROM_NO_WRITE
jmp $4100
!if * > PrelaunchMax {
!error "code is too large, ends at ", *
}