os-core/kernel/leos/arch.h

24 lines
615 B
C
Raw Normal View History

2019-05-29 11:10:01 +02:00
/******************************************************************************
*
* Copyright (c) 2017-2019 by Löwenware Ltd
* Please, refer LICENSE file for legal information
*
******************************************************************************/
/**
2019-12-01 22:57:02 +01:00
* @file arch.h
2019-05-29 11:10:01 +02:00
* @author Ilja Kartašov <ik@lowenware.com>
* @brief
*
* @see https://lowenware.com/
*/
2019-12-01 22:57:02 +01:00
#ifndef ARCH_H_F63C116D_51C9_4E25_9B1F_126833937268
#define ARCH_H_F63C116D_51C9_4E25_9B1F_126833937268
2019-05-29 11:10:01 +02:00
2019-12-01 22:57:02 +01:00
#include <aarch64/aarch64.h>
2019-05-29 11:10:01 +02:00
2019-12-01 22:57:02 +01:00
#define k_arch_init(...) aarch64_init(__VA_ARGS__)
2019-05-29 11:10:01 +02:00
2019-12-01 22:57:02 +01:00
#endif /* !ARCH_H */