Changeset 694 for trunk/softs/tsar_boot/src
- Timestamp:
- May 17, 2014, 11:59:53 AM (11 years ago)
- Location:
- trunk/softs/tsar_boot/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/softs/tsar_boot/src/reset.S
r660 r694 230 230 mfc0 a1, CP0_CAUSE /* second arg is cause */ 231 231 mfc0 a2, CP0_EPC /* third argc is epc */ 232 mfc2 a3, CP2_DBVAR /* fourth argc is dbvar */ 232 233 nop 233 234 j handle_except -
trunk/softs/tsar_boot/src/reset_elf_loader.c
r687 r694 39 39 Elf32_Phdr elf_pht[PHDR_ARRAY_SIZE]; 40 40 41 unsigned char * buffer_ptr ;41 unsigned char * buffer_ptr = 0; 42 42 Elf32_Ehdr * elf_ehdr_ptr; 43 43 Elf32_Phdr * elf_phdr_ptr; -
trunk/softs/tsar_boot/src/reset_exception.c
r586 r694 9 9 #include <reset_tty.h> 10 10 11 void handle_except(int status, int cause, int epc )11 void handle_except(int status, int cause, int epc, int dbvar) 12 12 { 13 13 reset_puts("\n[RESET] exception handler called: \r\n status "); … … 19 19 reset_puts(")\r\n epc "); 20 20 reset_putx(epc); 21 reset_puts("\r\n dbvar "); 22 reset_putx(dbvar); 21 23 reset_puts("\r\n"); 22 24 while (1); -
trunk/softs/tsar_boot/src/sdcard.c
r586 r694 107 107 * \param sdcard : Initialized pointer to block device 108 108 * \param index : SD card CMD index 109 * \param app : Type of command, 0 for normal command or 1 for application specific 109 * \param app : Type of command, 0 for normal command or 1 for application 110 * specific 110 111 * \param args : SD card CMD arguments 111 112 *
Note: See TracChangeset
for help on using the changeset viewer.