2015-08-29 13:58:57 +00:00
|
|
|
.include "pce.inc"
|
2015-07-12 12:27:24 +00:00
|
|
|
|
2015-08-29 13:58:57 +00:00
|
|
|
.export psg_init
|
2014-11-29 13:18:48 +00:00
|
|
|
|
2015-10-09 19:44:20 +00:00
|
|
|
.segment "INIT"
|
2014-11-29 13:18:48 +00:00
|
|
|
psg_init:
|
2015-08-29 13:58:57 +00:00
|
|
|
clx
|
2015-09-04 12:14:17 +00:00
|
|
|
stz PSG_GLOBAL_PAN ; Clear global balance
|
|
|
|
|
2014-11-29 13:18:48 +00:00
|
|
|
psg_clear_loop:
|
2015-09-04 12:14:17 +00:00
|
|
|
stx PSG_CHAN_SELECT ; Select channel
|
|
|
|
stz PSG_FREQ_LO ; Clear frequency LSB
|
|
|
|
stz PSG_FREQ_HI ; Clear frequency MSB
|
|
|
|
stz PSG_CHAN_CTRL ; Clear volume
|
|
|
|
stz PSG_CHAN_PAN ; Clear balance
|
|
|
|
stz PSG_NOISE ; Clear noise control
|
|
|
|
stz PSG_LFO_FREQ ; Clear LFO frequency
|
|
|
|
stz PSG_LFO_CTRL ; Clear LFO control
|
2014-11-29 13:18:48 +00:00
|
|
|
|
2015-08-29 13:58:57 +00:00
|
|
|
cly
|
|
|
|
psg_clear_waveform:
|
2015-09-04 12:14:17 +00:00
|
|
|
stz PSG_CHAN_DATA ; Clear waveform byte
|
2015-08-29 13:58:57 +00:00
|
|
|
iny
|
|
|
|
cpy #$20
|
|
|
|
bne psg_clear_waveform
|
2014-11-29 13:18:48 +00:00
|
|
|
|
2015-08-29 13:58:57 +00:00
|
|
|
inx
|
|
|
|
cpx #$06
|
|
|
|
bne psg_clear_loop
|
|
|
|
rts
|