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