下面的代码如何使PC发出蜂鸣声?

发布于 2024-11-07 07:09:22 字数 415 浏览 0 评论 0原文

void Sound(int f)
{  
    USHORT   B=1193180/f; 

    UCHAR temp = In_8(0x61);
    temp = temp | 3; 
    Out_8(0x61,temp);

    Out_8(0x43,0xB6);
    Out_8(0x42,B&0xF);
    Out_8(0x42,(B>>8)&0xF);
}

In_8/Out_8 从指定端口读取/写入 8 位(实现细节省略)。

电脑如何发出蜂鸣声?

更新

为什么这里使用&0xF?不应该是0xFF吗?

void Sound(int f)
{  
    USHORT   B=1193180/f; 

    UCHAR temp = In_8(0x61);
    temp = temp | 3; 
    Out_8(0x61,temp);

    Out_8(0x43,0xB6);
    Out_8(0x42,B&0xF);
    Out_8(0x42,(B>>8)&0xF);
}

In_8/Out_8 reads/writes 8 bit to/from a specified port(implementation details omitted).

How does it make PC beep?

UPDATE

Why &0xF is used here? Shouldn't it be 0xFF?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

微暖i 2024-11-14 07:09:22

PC 有一个 8255 定时器芯片,使用端口 0x61、0x43 和 0x42 进行控制。

当端口 0x61 位 0 设置为 1 时,这意味着“打开连接到扬声器的定时器”。
当端口 0x61 位 1 设置为 1 时,这意味着“打开扬声器”。

这是在代码的第一段中完成的。

第二部分将“魔术值”0xB6放在端口0x43上,这意味着到达端口0x42的以下两个字节将被解释为定时器频率的除数。除法所得的频率(1193180/除数)随后将被发送到扬声器。

http://gd.tuwien.ac.at/languages /c/programming-bbrown/advcw3.htm#sound

The PC has a 8255 timer chip, which is controlled using the ports 0x61, 0x43 and 0x42.

When port 0x61 bit 0 is set to 1, this means "turn on the timer that is connected to the speaker".
When port 0x61 bit 1 is set to 1, this means "turn on the speaker".

This is done in the first paragraph of your code.

The second part puts the "magic value" 0xB6 on port 0x43, which means that the following two bytes arriving at port 0x42 will be interpreted as the divisor for the timer frequency. The division's resulting frequency (1193180 / divisor) will then be sent to the speaker.

http://gd.tuwien.ac.at/languages/c/programming-bbrown/advcw3.htm#sound

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文