dos33fsprogs/demos/xmas_2023/xmas.s

45 lines
654 B
ArmAsm
Raw Normal View History

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