mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-08 03:47:15 -04:00
23 lines
496 B
C++
23 lines
496 B
C++
//=======================================================================
|
|
// Copyright Baptiste Wicht 2013-2018.
|
|
// Distributed under the terms of the MIT License.
|
|
// (See accompanying file LICENSE or copy at
|
|
// http://www.opensource.org/licenses/MIT)
|
|
//=======================================================================
|
|
|
|
#ifndef DRIVER_PIT_H
|
|
#define DRIVER_PIT_H
|
|
|
|
#include <types.hpp>
|
|
|
|
namespace pit {
|
|
|
|
bool install();
|
|
void remove();
|
|
|
|
uint64_t counter();
|
|
|
|
} //end of namespace pit
|
|
|
|
#endif
|