Changeset aecef8f9 in rtems
- Timestamp:
- 11/08/01 23:48:08 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- de202e7
- Parents:
- 357a9f0
- Location:
- c/src/lib/libbsp/powerpc/ppcn_60x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/ppcn_60x/ChangeLog
r357a9f0 raecef8f9 1 2001-11-08 Dennis Ehlin (ECS) <Dennis.Ehlin@ecs.ericsson.se> 2 3 This modification is part of the submitted modifications necessary to 4 support the IBM PPC405 family. This submission was reviewed by 5 Thomas Doerfler <Thomas.Doerfler@imd-systems.de> who ensured it did 6 not negatively impact the ppc403 BSPs. The submission and tracking 7 process was captured as PR50. 8 * startup/spurious.c: Added ppc405 support. 9 1 10 2001-10-25 Joel Sherrill <joel@OARcorp.com> 2 11 -
c/src/lib/libbsp/powerpc/ppcn_60x/startup/spurious.c
r357a9f0 raecef8f9 87 87 break; 88 88 89 #if defined(ppc403) 90 #error "Please fill in names. " 89 #if defined(ppc403) || defined(ppc405) 91 90 case PPC_IRQ_CRIT : 92 91 DEBUG_puts( "Critical Error "); 93 92 break; 94 93 case PPC_IRQ_PIT: 95 DEBUG_puts( " 0x01000" );94 DEBUG_puts( "Prog. Interval Timer " ); 96 95 break; 97 96 case PPC_IRQ_FIT: 98 DEBUG_puts( " 0x01010" );97 DEBUG_puts( "Fixed Interval Timer " ); 99 98 break; 100 99 case PPC_IRQ_WATCHDOG : 101 DEBUG_puts( " 0x01020" );100 DEBUG_puts( "Watchdog Timer " ); 102 101 break; 103 102 case PPC_IRQ_DEBUG : 104 DEBUG_puts( " 0x02000" );103 DEBUG_puts( "Debug " ); 105 104 break; 106 105
Note: See TracChangeset
for help on using the changeset viewer.