Added files with basic definitions of KPC (kernel process communication).
[kernel.git] / inc / bio.h
blob38b094c7e9a3a2d16cf94e7d265d9090ead7d9a6
1 // Basic input output operations
3 #ifndef __KERNEL__BIO___HEADER____
4 #define __KERNEL__BIO___HEADER____
6 #include "types.h"
8 extern void memset32 (UINT*, UINT, UINT);
9 extern void memset8 (UINT*, UINT8, UINT);
10 extern void memcpy32 (UINT*, UINT*, UINT);
11 extern void memcpy8 (UINT*, UINT*, UINT);
12 extern void outportb (UINT16, UINT8);
13 extern UINT8 inportb (UINT16);
17 #endif //(__KERNEL__BIO___HEADER____)