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
|
|
|
|
2020-01-17 10:13:01 +01:00
|
|
|
#define 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 */
|