27 lines
244 B
C
27 lines
244 B
C
/**
|
|
* \file
|
|
*/
|
|
|
|
#ifndef GDT_H
|
|
#define GDT_H
|
|
|
|
/**
|
|
* Initializes the GDT & TSS.
|
|
*/
|
|
|
|
void gdt_init();
|
|
|
|
/**
|
|
* Allows all ports in the IOPB.
|
|
*/
|
|
|
|
|
|
void allow_all_ports();
|
|
|
|
/**
|
|
* Blocks all ports in the IOPB.
|
|
*/
|
|
|
|
void block_all_ports();
|
|
#endif
|