efi68k.h

来自「RTEMS (Real-Time Executive for Multiproc」· C头文件 代码 · 共 35 行

H
35
字号
/*  efi68k.h * *  $Id: efi68k.h,v 1.3 1997/04/07 21:25:32 joel Exp $ */#ifndef _EFI68k_H_#define _EFI68k_H_/* interrupt levels */#define WD_ISR_LEVEL 1#define TCP_ISR_LEVEL 4#define UART_ISR_LEVEL 6#define INTR7 7/* macro/function definitions */#if 0/* *  This prototype really should have the noreturn attribute but *  that causes a warning since it appears that the routine does *  return. * *   void dumby_start ()  __attribute__ ((noreturn)); */static void reboot(void);__inline__ static void reboot() {asm("trap #15");}#else#define reboot() do {asm("trap #15");} while(0)#endif     #endif /* _EFI68k_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?