sound.c

来自「由8051/8096/8099/8048单片机汇编工具、 汇编语言、摩托罗拉m」· C语言 代码 · 共 31 行

C
31
字号
/*
**  SOUND.C
**
**  Original Copyright 1988-1991 by Bob Stout as part of
**  the MicroFirm Function Library (MFL)
**
**  This subset version is functionally identical to the
**  version originally published by the author in Tech Specialist
**  magazine and is hereby donated to the public domain.
*/

#include "sound.h"

void soundon(void)
{
      short value;

      value = inp(SCNTRL);
      value |= SOUNDON;
      outp(SCNTRL, value);
}

void soundoff(void)
{
      short value;

      value = inp(SCNTRL);
      value &= SOUNDOFF;
      outp(SCNTRL, value);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?