interrupt.c 397 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2018/10/01 Bernard The first version
  9. */
  10. #include <rthw.h>
  11. #include <stdint.h>
  12. #include <rtthread.h>
  13. typedef void (*irq_handler_t)(void);
  14. extern const irq_handler_t isr_table[];
  15. extern void vSystemIrqHandler(uint32_t mcause);