[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: apple II 8bit sound programmers
Hi Michael,
I'll look into adding support for RT.SYNTH generated sequences....
I am curious about apple II sound...
**********************************
ldy duration ;duration is fixed in this example
loop0
lda speaker
ldx note,time ; note = frequency of sound to play
loop
dex ;
bne loop ;
dey
bne loop0
****************************8
the higher the frequency of the sound (IE the note)
the faster the routine goes...
How to make all note frequencies take
the same ammount of time (cycles)?
Rich