aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/sound/sound.h
blob: 001ef92090f8bd12ee25aa7f34d1f76872653349 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MELVIX_SOUND_H
#define MELVIX_SOUND_H

#include <stdint.h>

/**
 * Beep in specific frequency for amount of ticks
 * @param frequency The frequency of the beep
 * @param ticks The duration in ticks
 */
void beep(u32 frequency, u32 ticks);

#endif