os/kernel/cpu/i386/gdt.h
2020-07-25 16:54:37 -05:00

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