blob: 35a8aa0343042e1f350b08f57932c87efe0cb0f4 [file] [log] [blame]
/*
* SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/*
* @file generic/cortexm/sys.h
* @brief cortexm system primitives for libmetal.
*/
#ifndef __METAL_GENERIC_CORTEXM_SYS__H__
#define __METAL_GENERIC_CORTEXM_SYS__H__
#ifdef __cplusplus
extern "C" {
#endif
#ifdef METAL_INTERNAL
void sys_irq_enable(unsigned int vector);
void sys_irq_disable(unsigned int vector);
#endif /* METAL_INTERNAL */
#ifdef __cplusplus
}
#endif
#endif /* __METAL_GENERIC_CORTEXM_SYS__H__ */