mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 20:06:09 +00:00
162 lines
2.7 KiB
ArmAsm
162 lines
2.7 KiB
ArmAsm
play_frame:
|
|
|
|
|
|
;============================
|
|
; see if still counting down
|
|
|
|
lda SONG_COUNTDOWN
|
|
bpl done_update_song
|
|
|
|
set_notes_loop:
|
|
|
|
|
|
;==================
|
|
; load next byte
|
|
|
|
; ldy SONG_OFFSET ; Y = offset into song
|
|
track_smc:
|
|
lda track4;,Y ; get next byte into A
|
|
|
|
;==================
|
|
; see if hit end
|
|
|
|
cmp #$ff ; FF means we hit end
|
|
bne not_end
|
|
|
|
;====================================
|
|
; if at end, loop back to beginning
|
|
|
|
ldy WHICH_TRACK ; get current track in Y
|
|
iny ; increment track
|
|
|
|
cpy #5 ; see if off end
|
|
bne no_wrap
|
|
ldy #1 ; loop to track 1
|
|
no_wrap:
|
|
sty WHICH_TRACK
|
|
|
|
lda tracks_l,Y ; self-modify track
|
|
sta track_smc+1
|
|
; lda tracks_h,Y ; enforce in same page
|
|
; sta track_smc+2
|
|
|
|
lda bamps_l,Y ; self modify B-amplitude
|
|
sta bamp_smc+1
|
|
; lda bamps_h,Y ; enforce in same page
|
|
; sta bamp_smc+2
|
|
|
|
; lda #0 ; reset song offset
|
|
; sta SONG_OFFSET
|
|
|
|
jmp set_notes_loop ; bra ; try again in new track
|
|
|
|
not_end:
|
|
|
|
|
|
; NNNNNEEC -- c=channel, e=end, n=note
|
|
|
|
pha ; save note
|
|
|
|
and #1
|
|
asl
|
|
tax ; put channel offset*2 in X
|
|
|
|
|
|
pla ; restore note
|
|
pha
|
|
|
|
and #$6 ; get note length
|
|
lsr
|
|
tay
|
|
lda lengths,Y ; lookup in table
|
|
sta SONG_COUNTDOWN ;
|
|
|
|
pla
|
|
lsr
|
|
lsr
|
|
lsr ; get note in A
|
|
|
|
tay ; lookup in table
|
|
|
|
lda frequencies_high,Y ; get high frequency
|
|
sta AY_REGS+1,X ; put in AY register
|
|
|
|
lda frequencies_low,Y ; get low frequency
|
|
sta AY_REGS,X ; also put in AY register
|
|
|
|
|
|
;============================
|
|
; point to next
|
|
|
|
; assume less than 256 bytes
|
|
inc track_smc+1 ; SONG_OFFSET
|
|
|
|
|
|
done_update_song:
|
|
|
|
|
|
;=================================
|
|
; coundown song
|
|
|
|
dec SONG_COUNTDOWN ; if length was 0, means there
|
|
; was another note starting at same
|
|
; time, so go back and play that too
|
|
bmi set_notes_loop
|
|
|
|
|
|
|
|
|
|
;===============================
|
|
;===============================
|
|
; things that happen every frame
|
|
;===============================
|
|
;===============================
|
|
|
|
|
|
;=================================
|
|
; rotate through channel A volume
|
|
|
|
lda FRAME ; repeating 8-long pattern
|
|
and #$7
|
|
tay
|
|
lda channel_a_volume,Y
|
|
sta AY_REGS+8 ; A volume
|
|
|
|
|
|
;=================================
|
|
; handle channel B volume
|
|
chanb:
|
|
; lda FRAME
|
|
; and #$7
|
|
tya
|
|
bne bamps_skip
|
|
|
|
lda BAMP_COUNTDOWN ; b-amp conutdown
|
|
bne bamps_good
|
|
|
|
bamp_smc:
|
|
lda bamps4 ; get new value
|
|
pha
|
|
and #$f ; bottom 4 its is ampllitude
|
|
sta AY_REGS+9 ; B volume
|
|
pla
|
|
|
|
lsr ; top 4 bits are length
|
|
lsr
|
|
lsr
|
|
lsr
|
|
sta BAMP_COUNTDOWN
|
|
|
|
inc bamp_smc+1 ; increment to next location
|
|
; assumes on same page
|
|
; and less than 256
|
|
bamps_good:
|
|
dec BAMP_COUNTDOWN ; countdown
|
|
|
|
bamps_skip:
|
|
|
|
;=================================
|
|
; inc frame counter
|
|
|
|
inc FRAME
|