URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [m68k/] [efi68k/] [include/] [efi68k.h] - Rev 30
Go to most recent revision | Compare with Previous | Blame | View Log
/* efi68k.h * * $Id: efi68k.h,v 1.2 2001-09-27 12:00:03 chris 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_ */
Go to most recent revision | Compare with Previous | Blame | View Log