Sona 0.50 Source

Sona 0.50/src-z80/fm_ch3mode.z80

;****************************************************************************
; SetNormalFm3
; Call this to set FM ch3 normal mode.
;----------------------------------------------------------------------------
; breaks ... a
;****************************************************************************

SetNormalFm3:
    ld      a, YMACK_TIMERA|YMCH3_NORMAL    ; Rewrite the timer acknowledge
    ld      (TimerAAck), a                  ; instructions to reset ch3 mode
    ld      a, YMACK_TIMERB|YMCH3_NORMAL
    ld      (TimerBAck), a
    
    ret                                 ; End of subroutine

;****************************************************************************
; SetSpecialFm3
; Call this to set FM ch3 special mode.
;----------------------------------------------------------------------------
; breaks ... a
;****************************************************************************

SetSpecialFm3:
    ld      a, YMACK_TIMERA|YMCH3_SPECIAL   ; Rewrite the timer acknowledge
    ld      (TimerAAck), a                  ; instructions to set ch3 mode
    ld      a, YMACK_TIMERB|YMCH3_SPECIAL   ; to special
    ld      (TimerBAck), a
    
    ret                                 ; End of subroutine