From f1e62229ca1ce4d7768268724204772049341282 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 16 Sep 2019 19:44:04 +0200 Subject: Added basic frequency sound generator Changes to be committed: new file: src/graphics/graphics.h modified: src/kernel.c new file: src/sound/frequency.c new file: src/sound/sound.h modified: build.sh Changes not staged for commit: deleted: src/graphics/vga.h modified: src/input/ps2/keyboard.c modified: src/input/ps2/mouse.c modified: src/interrupts/irq.c modified: src/interrupts/isr.c modified: src/memory/memory.c --- src/sound/sound.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/sound/sound.h (limited to 'src/sound/sound.h') 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 -- cgit v1.2.3