13 lines
226 B
C++
13 lines
226 B
C++
|
/* Descriptors.hh vim: set tw=80: Eryn Wells <eryn@erynwells.me>
|
||
|
*/
|
||
|
/**
|
||
|
* Declaration of relevant classes and functions for dealing with the GDT and
|
||
|
* IDT.
|
||
|
*/
|
||
|
|
||
|
namespace kernel {
|
||
|
|
||
|
void initGDT();
|
||
|
|
||
|
} /* namespace kernel */
|