4cade/src/demo/nibbler.a

45 lines
879 B
Plaintext
Raw Permalink Normal View History

;license:MIT
2022-09-27 17:20:04 +00:00
;(c) 2021-2022 by Frank M., qkumba
!cpu 6502
2022-10-01 00:04:02 +00:00
!to "build/DEMO/NIBBLER#060300",plain
*=$300
!source "src/constants.a" ; no code in these
!source "src/macros.a"
2022-09-27 17:20:04 +00:00
+ENABLE_ACCEL_LC
2022-09-10 05:36:52 +00:00
+LOAD_XSINGLE title
lda #$60
sta $8A19
jsr $6550 ; decompress and show title
lda #$0A
sta $1984
2022-09-27 17:20:04 +00:00
ldx #3-1
- lda patch,x
sta $1984+1,x
sta $166D,x
sta $0981,x
sta $11BC,x ; set exits
lda patch2,x
sta $165C,x ; disable button detection
dex
bpl -
stx $0914 ; disable sound
+DISABLE_ACCEL
jmp $900
2022-09-27 17:20:04 +00:00
patch !byte $4C,$00,$01
patch2 !byte $A9,$01,$EA
2024-05-25 21:24:57 +00:00
title +PSTRING "NIBBLER"
!if * > $3F0 {
!error "code is too large, ends at ", *
}