Changing the sound frequency no longer prints to the terminal.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-08-22 11:12:29 +02:00
parent cd78c42c78
commit 8d86dc6f6a
1 changed files with 0 additions and 2 deletions

View File

@ -38,8 +38,6 @@ namespace Sortix
void Play(nat Frequency)
{
Log::PrintF("Playing frequency %u\n", Frequency);
//Set the PIT to the desired frequency
uint32_t Div = 1193180 / Frequency;
CPU::OutPortB(0x43, 0xB6);