下面的代码如何使PC发出蜂鸣声?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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