8 lines
171 B
C
8 lines
171 B
C
// SPDX-License-Identifier: MPL-2.0
|
|
#ifndef SH_LIB_PIT_H
|
|
#define SH_LIB_PIT_H
|
|
#include "std/stdlib.h"
|
|
// Set PIT frequency
|
|
void sh_pit_set_frequency(sh_uint64 hz);
|
|
#endif
|