Changeset ef99210e in rtems for c/src/lib/libbsp/powerpc/shared/startup/bspstart.c
- Timestamp:
- 06/29/00 16:27:47 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 847ed4bd
- Parents:
- 9b6d173
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/shared/startup/bspstart.c
r9b6d173 ref99210e 78 78 void BSP_panic(char *s) 79 79 { 80 printk(" RTEMS 4.x PANIC %s\n", s);81 _ return_to_ppcbug();80 printk("%s PANIC %s\n",_RTEMS_version, s); 81 __asm__ __volatile ("sc"); 82 82 } 83 83 84 84 void _BSP_Fatal_error(unsigned int v) 85 85 { 86 printk(" RTEMS 4.x PANIC ERROR %x\n", v);87 _ return_to_ppcbug();86 printk("%s PANIC ERROR %x\n",_RTEMS_version, v); 87 __asm__ __volatile ("sc"); 88 88 } 89 89
Note: See TracChangeset
for help on using the changeset viewer.