aboutsummaryrefslogtreecommitdiff
path: root/src/sound
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound')
-rw-r--r--src/sound/frequency.c32
-rw-r--r--src/sound/sound.h6
2 files changed, 38 insertions, 0 deletions
diff --git a/src/sound/frequency.c b/src/sound/frequency.c
new file mode 100644
index 0000000..e5e831c
--- /dev/null
+++ b/src/sound/frequency.c
@@ -0,0 +1,32 @@
+#include <stdint.h>
+#include "../io/io.h"
+#include "../timer/timer.h"
+
+static void play_sound(uint32_t frequency) {
+ uint32_t divided;
+ uint8_t tmp;
+
+ divided = 1193180 / frequency;
+ send(0x43, 0xb6);
+ send(0x42, (uint8_t) (divided));
+ send(0x42, (uint8_t) (divided >> 8));
+
+ //And play the sound using the PC speaker
+ tmp = receive(0x61);
+ if (tmp != (tmp | 3)) {
+ send(0x61, tmp | 3);
+ }
+}
+
+static void shut_up() {
+ uint8_t tmp = receive(0x61) & 0xFC;
+
+ send(0x61, tmp);
+}
+
+//Make a beep
+void beep() {
+ play_sound(1000);
+ timer_wait(100);
+ shut_up();
+} \ No newline at end of file
diff --git a/src/sound/sound.h b/src/sound/sound.h
new file mode 100644
index 0000000..f8692ea
--- /dev/null
+++ b/src/sound/sound.h
@@ -0,0 +1,6 @@
+#ifndef MELVIX_SOUND_H
+#define MELVIX_SOUND_H
+
+void beep();
+
+#endif