2023-12-15 00:00:24 -05:00
|
|
|
; XMAS 2023
|
2023-12-04 22:17:22 -05:00
|
|
|
|
|
|
|
.include "hardware.inc"
|
|
|
|
.include "zp.inc"
|
|
|
|
.include "qload.inc"
|
|
|
|
.include "music.inc"
|
|
|
|
|
|
|
|
|
2023-12-15 00:00:24 -05:00
|
|
|
xmas_main:
|
|
|
|
|
|
|
|
;======================================
|
|
|
|
; init
|
|
|
|
;======================================
|
2023-12-04 22:17:22 -05:00
|
|
|
|
|
|
|
lda #$00
|
|
|
|
sta DRAW_PAGE
|
|
|
|
sta clear_all_color+1
|
|
|
|
|
|
|
|
lda #$04
|
|
|
|
sta DRAW_PAGE
|
|
|
|
jsr clear_all
|
|
|
|
|
2023-12-15 00:00:24 -05:00
|
|
|
;======================================
|
|
|
|
; draw opening scene
|
|
|
|
;======================================
|
2023-12-04 22:17:22 -05:00
|
|
|
|
2023-12-15 00:40:43 -05:00
|
|
|
jsr fireplace
|
2023-12-04 22:17:22 -05:00
|
|
|
|
2023-12-15 00:00:24 -05:00
|
|
|
;======================================
|
|
|
|
; plasma tree
|
|
|
|
;======================================
|
2023-12-04 22:17:22 -05:00
|
|
|
|
2023-12-15 00:00:24 -05:00
|
|
|
jsr plasma_tree
|
2023-12-04 22:17:22 -05:00
|
|
|
|
|
|
|
|
2023-12-15 00:00:24 -05:00
|
|
|
finished:
|
|
|
|
jmp finished
|
2023-12-04 22:17:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
.include "wait_keypress.s"
|
|
|
|
.include "irq_wait.s"
|
|
|
|
|
2023-12-15 00:00:24 -05:00
|
|
|
.include "plasma_tree.s"
|
2023-12-15 00:40:43 -05:00
|
|
|
.include "fireplace.s"
|