22 lines
365 B
C
22 lines
365 B
C
//functions.h
|
|
//05/07/03 Josh Holtrop
|
|
//for HOS
|
|
|
|
|
|
|
|
inline void outportb(unsigned int port, unsigned char value);
|
|
inline void outportw(unsigned int port, unsigned int value);
|
|
inline UCHAR inportb(unsigned short port);
|
|
void enable_ints();
|
|
void disable_ints();
|
|
inline void restart();
|
|
void remap_pics(int pic1, int pic2);
|
|
inline void eoi();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|