; --------------------------------------------------------------------------- ; 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