2008-01-08 00:19:24 +01:00
|
|
|
/****************************************************************************
|
2016-08-07 02:16:31 +02:00
|
|
|
* arch/z16/include/irq.h
|
2008-01-08 00:19:24 +01:00
|
|
|
*
|
2021-03-28 17:48:17 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2008-01-08 00:19:24 +01:00
|
|
|
*
|
2021-03-28 17:48:17 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2008-01-08 00:19:24 +01:00
|
|
|
*
|
2021-03-28 17:48:17 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2008-01-08 00:19:24 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-05 23:00:04 +02:00
|
|
|
/* This file should never be included directly but, rather,
|
2008-01-08 00:19:24 +01:00
|
|
|
* only indirectly through nuttx/irq.h
|
|
|
|
*/
|
|
|
|
|
2016-08-07 02:48:45 +02:00
|
|
|
#ifndef __ARCH_Z16_INCLUDE_IRQ_H
|
|
|
|
#define __ARCH_Z16_INCLUDE_IRQ_H
|
2008-01-08 00:19:24 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/irq.h>
|
|
|
|
#include <arch/chip/irq.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 16:04:12 +02:00
|
|
|
* Pre-processor Definitions
|
2008-01-08 00:19:24 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-03 01:42:29 +02:00
|
|
|
* Public Data
|
2008-01-08 00:19:24 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2015-06-13 03:26:01 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2008-01-08 00:19:24 +01:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-08-07 02:48:45 +02:00
|
|
|
#endif /* __ARCH_Z16_INCLUDE_IRQ_H */
|