1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-14 19:29:26 +00:00
cc65/libsrc/sym1/beep.s
2021-05-09 16:34:53 -05:00

25 lines
642 B
ArmAsm

; ---------------------------------------------------------------------------
; beep.s
;
; for Sym-1
;
; Wayne Parham
;
; wayne@parhamdata.com
; ---------------------------------------------------------------------------
.include "sym1.inc"
.export _beep
.segment "CODE"
.proc _beep: near
; ---------------------------------------------------------------------------
jsr BEEP ; Beep
lda #$00 ;
ldx #$00 ;
rts ; Return 0000
; ---------------------------------------------------------------------------
.endproc