Entries from 2006-11-03 to 1 day

Beepサウンド対応

http://community.osdev.info/index.php?(PIT)8254に K-tan がまとめてくれている情報を利用します。 結構簡単そうなので、早速サンプルプログラムを書いてみよう。 // hz = 1193180 / value; void beep(dword hz) { word value = (word)(1193180 / hz); out…