19 lines
447 B
C++
19 lines
447 B
C++
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtoskrnl/includes/ar.hh
|
|
* DESCRIPTION:
|
|
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
|
|
*/
|
|
|
|
#ifndef __XTOSKRNL_AR_HH
|
|
#define __XTOSKRNL_AR_HH
|
|
|
|
#include <xtos.hh>
|
|
|
|
#include XTOS_ARCH_HEADER(ar, cpufunc.hh)
|
|
#include XTOS_ARCH_HEADER(ar, procsup.hh)
|
|
#include XTOS_ARCH_HEADER(ar, traps.hh)
|
|
|
|
#endif /* __XTOSKRNL_AR_HH */
|