Merge pull request #1 from cybernesto/master

VBL detection for the //c
This commit is contained in:
TMR 2016-05-21 17:04:39 +01:00
commit b219222b82

View File

@ -1,3 +1,4 @@
; @com.wudsn.ide.asm.hardware=APPLE2
;
; F15 D'GAMMA CLONE
;
@ -34,6 +35,10 @@ char_data !binary "binary/c64cd_screen.raw"
; Constants
rd_vbl_bar = $c019 ; top bit clear means vblank
ptrig = $c070 ; clears vbl on the //c
setioudis = $c07e
clrioudis = $c07f
envbl = $c05b ; vbl enable for the //c
txtclr = $c050 ; select bitmap mode
txtset = $c051 ; select text mode
@ -81,6 +86,11 @@ entry sei
sta txtclr
sta hires
sta mixset
; Enable the VBL on the //c
sta clrioudis
sta envbl
sta setioudis
; Initialise the logo movement routine
lda #$00
@ -105,8 +115,8 @@ work_clear lda #$20
; Main loop
main_loop lda rd_vbl_bar
bmi *-$03
bpl main_loop
lda ptrig
; Update the upper colour bars
lda sine_at_1
@ -433,10 +443,6 @@ st_xb stx scroll_timer
jsr random
jsr random
; Wait for the start of the screen
lda rd_vbl_bar
bpl *-$03
jmp main_loop