⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 efi68k.h

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 H
字号:
/*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -