19 lines
397 B
C
19 lines
397 B
C
|
/*
|
||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2018/10/01 Bernard The first version
|
||
|
*/
|
||
|
|
||
|
#include <rthw.h>
|
||
|
#include <stdint.h>
|
||
|
#include <rtthread.h>
|
||
|
|
||
|
typedef void (*irq_handler_t)(void);
|
||
|
extern const irq_handler_t isr_table[];
|
||
|
|
||
|
extern void vSystemIrqHandler(uint32_t mcause);
|