Changeset f30a0ca9 in rtems
- Timestamp:
- Aug 16, 2001, 9:11:13 PM (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- baf7b085
- Parents:
- 7ae5125
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/sh/ChangeLog
r7ae5125 rf30a0ca9 1 2001-07-25 Radzislaw Galler <rgaller@et.put.poznan.pl> 2 3 * cpu.c (_CPU_ISR_install_vector): Corrected interrupt range 4 checking which was SH1 specific. It didn't work for SH2 (has more 5 interrupt sources). 6 1 7 2001-02-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/sh/cpu.c
r7ae5125 rf30a0ca9 159 159 { 160 160 proc_ptr ignored ; 161 161 #if 0 162 162 if(( vector <= 113) && ( vector >= 11)) 163 163 { 164 #endif 164 165 *old_handler = _ISR_Vector_table[ vector ]; 165 166 … … 179 180 180 181 _ISR_Vector_table[ vector ] = new_handler; 182 #if 0 181 183 } 184 #endif 182 185 } 183 186 -
cpukit/score/cpu/sh/ChangeLog
r7ae5125 rf30a0ca9 1 2001-07-25 Radzislaw Galler <rgaller@et.put.poznan.pl> 2 3 * cpu.c (_CPU_ISR_install_vector): Corrected interrupt range 4 checking which was SH1 specific. It didn't work for SH2 (has more 5 interrupt sources). 6 1 7 2001-02-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/sh/cpu.c
r7ae5125 rf30a0ca9 159 159 { 160 160 proc_ptr ignored ; 161 161 #if 0 162 162 if(( vector <= 113) && ( vector >= 11)) 163 163 { 164 #endif 164 165 *old_handler = _ISR_Vector_table[ vector ]; 165 166 … … 179 180 180 181 _ISR_Vector_table[ vector ] = new_handler; 182 #if 0 181 183 } 184 #endif 182 185 } 183 186
Note: See TracChangeset
for help on using the changeset viewer.