pitch-dark/src/ui.sound.a

33 lines
588 B
Plaintext
Raw Normal View History

2018-03-26 17:24:42 +00:00
;license:MIT
;(c) 2018 by 4am
;
; Sound routines
;
; Public functions
; - SoftBell
;
2018-03-27 21:17:47 +00:00
;------------------------------------------------------------------------------
; SoftBell
;
; in: none
2018-04-15 16:29:24 +00:00
; out: all registers and flags preserved
2018-03-27 21:17:47 +00:00
;------------------------------------------------------------------------------
2018-03-26 17:24:42 +00:00
SoftBell
php
phx
pha
ldx #32
- lda #2
jsr WAIT
bit SPEAKER
lda #33
jsr WAIT
bit SPEAKER
dex
bne -
pla
plx
plp
rts