19 lines
405 B
C
19 lines
405 B
C
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtoskrnl/includes/i686/hl.h
|
|
* DESCRIPTION: I686 hardware abstraction layer routines
|
|
* DEVELOPERS: Jozef Nagy <schkwve@gmail.com>
|
|
*/
|
|
|
|
#ifndef __XTOSKRNL_I686_HL_H
|
|
#define __XTOSKRNL_I686_HL_H
|
|
|
|
#include <xtos.h>
|
|
|
|
XTCDECL
|
|
VOID
|
|
HlIoPortWait(VOID);
|
|
|
|
#endif /* __XTOSKRNL_I686_HL_H */
|