aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/sound/sound.h
blob: 312f0d87bf8b6c2f115ebaf964a590071b651263 (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(uint32_t frequency, uint32_t ticks);

#endif