Changeset 992 for trunk/softs/tsar_boot/src/reset_utils.c
- Timestamp:
- May 14, 2015, 10:45:44 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/softs/tsar_boot/src/reset_utils.c
r962 r992 231 231 unsigned int word; 232 232 233 reset_puts(" ***********************************************************************\n");233 reset_puts("\n***********************************************************************\n"); 234 234 for ( line = 0 ; line < 32 ; line++ ) 235 235 { … … 241 241 for ( word=0 ; word<4 ; word++ ) 242 242 { 243 unsigned int byte = (line<< 5) + (word<<2);243 unsigned int byte = (line<<4) + (word<<2); 244 244 unsigned int hexa = (buffer[byte ]<<24) | 245 245 (buffer[byte+1]<<16) |
Note: See TracChangeset
for help on using the changeset viewer.