mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:48:11 +00:00

These types can be picked up by including <AK/Types.h>: * u8, u16, u32, u64 (unsigned) * i8, i16, i32, i64 (signed)
20 lines
489 B
C++
20 lines
489 B
C++
#include <Kernel/Arch/i386/CPU.h>
|
|
#include <Kernel/Devices/PCSpeaker.h>
|
|
#include <Kernel/IO.h>
|
|
#include <Kernel/i8253.h>
|
|
|
|
void PCSpeaker::tone_on(int frequency)
|
|
{
|
|
IO::out8(PIT_CTL, TIMER2_SELECT | WRITE_WORD | MODE_SQUARE_WAVE);
|
|
u16 timer_reload = BASE_FREQUENCY / frequency;
|
|
|
|
IO::out8(TIMER2_CTL, LSB(timer_reload));
|
|
IO::out8(TIMER2_CTL, MSB(timer_reload));
|
|
|
|
IO::out8(0x61, IO::in8(0x61) | 3);
|
|
}
|
|
|
|
void PCSpeaker::tone_off()
|
|
{
|
|
IO::out8(0x61, IO::in8(0x61) & ~3);
|
|
}
|