interrupts.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _SYS_INTERRUPTS_H
00029 #define _SYS_INTERRUPTS_H
00030
00031 #include <sys/param.h>
00032
00033 #ifdef mc6811
00034 # include <asm-m68hc11/interrupts.h>
00035 #endif
00036
00037 #ifdef mc6812
00038 # include <asm-m68hc12/interrupts.h>
00039 #endif
00040
00050 extern void
00051 set_interrupt_handler (interrupt_vector_id id, interrupt_t handler);
00052
00059 extern void __attribute__((interrupt, noreturn))
00060 fatal_interrupt (void);
00061
00062 #include <arch/interrupts.h>
00063
00069 extern void _start (void);
00070
00071 #endif
|