home *** CD-ROM | disk | FTP | other *** search
- assume cs:_text
- _text segment public byte 'code'
- public _soundoff
-
- _soundoff proc near
-
- in al,61h ; get contents of system port b
- and al,11111100b ; turn speaker and timer off
- out 61h,al ; send out new values to port b
-
- ret
- _soundoff endp
- _text ends
- end