Hello friends! Help me with a simple question. I hope it's simple. 
In my game, I use the sound like this:
How can I play two sounds one after another?
beep1 -> pause -> beep2
or
Audible sound - inaudible sound - Audible sound, i.e. beep1 -> beep2 -> beep3 (beep 2 -Can not hear)
Help me write the working code. My game lacks only sound. I do not want to use the sound engine, since the game will be minimalistic.



...thanks!

In my game, I use the sound like this:
Code:
lda #%00000001
sta $4015 ;square 1
lda #%01010111
sta $4000
lda #$C9
sta $4002
lda #$02
sta $4003
sta $4015 ;square 1
lda #%01010111
sta $4000
lda #$C9
sta $4002
lda #$02
sta $4003
How can I play two sounds one after another?
beep1 -> pause -> beep2
or
Audible sound - inaudible sound - Audible sound, i.e. beep1 -> beep2 -> beep3 (beep 2 -Can not hear)
Help me write the working code. My game lacks only sound. I do not want to use the sound engine, since the game will be minimalistic.




...thanks!
