dos33fsprogs/demos/xmas_2023/xmas.s
2023-12-15 00:40:43 -05:00

45 lines
654 B
ArmAsm

; XMAS 2023
.include "hardware.inc"
.include "zp.inc"
.include "qload.inc"
.include "music.inc"
xmas_main:
;======================================
; init
;======================================
lda #$00
sta DRAW_PAGE
sta clear_all_color+1
lda #$04
sta DRAW_PAGE
jsr clear_all
;======================================
; draw opening scene
;======================================
jsr fireplace
;======================================
; plasma tree
;======================================
jsr plasma_tree
finished:
jmp finished
.include "wait_keypress.s"
.include "irq_wait.s"
.include "plasma_tree.s"
.include "fireplace.s"