Files
VolksForth/sources/6502/Atari8bit/sound.fth
Carsten Strotmann c632249474 Atari 8bit: cleanup
2020-07-26 13:22:46 +02:00

10 lines
145 B
Forth

\ Atari Sound Commands
( $D200 = Pokey AUDBASE )
: SOUND ( CH# FREQ DIST VOL -- )
SWAP $10 * + ROT DUP + $D200 +
ROT OVER C! 1+ C! ;