;****************************************************************************
; 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