Files
mango/arch/x86_64/include/arch/pit.h
2023-03-20 20:41:39 +00:00

17 lines
228 B
C

#ifndef ARCH_PIT_H_
#define ARCH_PIT_H_
#ifdef __cplusplus
extern "C" {
#endif
extern void pit_start(unsigned int hz);
extern void pit_stop(void);
extern void pit_wait(unsigned int ticks);
#ifdef __cplusplus
}
#endif
#endif