dos33fsprogs/graphics/gr/mode7/sky_demo.s

69 lines
1.0 KiB
ArmAsm
Raw Normal View History

2017-12-18 20:26:31 +00:00
.include "zp.inc"
;================================
; Clear screen and setup graphics
;================================
jsr clear_screens ; clear top/bottom of page 0/1
jsr set_gr_page0
;===============
; Init Variables
;===============
lda #0
sta DISP_PAGE
;=======================
; decompress scroll text
;=======================
lda #0
sta CV
sta ANGLE
lda #>sky_background
sta INH
lda #<sky_background
sta INL
jsr decompress_scroll
scroll_forever:
jsr scroll_background
jsr page_flip ; 6
2017-12-18 20:26:31 +00:00
; lda #250
; jsr WAIT
jsr wait_until_keypressed
inc ANGLE
lda ANGLE
and #$0f
sta ANGLE
jmp scroll_forever
;===============================================
; Routines
;===============================================
2021-01-06 15:20:10 +00:00
.include "gr_fast_clear.s"
.include "gr_scroll.s"
.include "pageflip.s"
.include "gr_setpage.s"
.include "keypress.s"
.include "bg_scroll.s"
.include "gr_offsets.s"
2017-12-18 20:26:31 +00:00
;===============================================
; Variables
;===============================================
.include "starry_sky.scroll"