Changeset 554 for trunk/softs/tsar_boot/src
- Timestamp:
- Oct 22, 2013, 8:15:05 PM (11 years ago)
- Location:
- trunk/softs/tsar_boot/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/softs/tsar_boot/src/boot_elf_loader.c
r425 r554 17 17 18 18 #if (BOOT_DEBUG == 1) 19 static char *init_state_str[] = {19 static char const * const init_state_str[] = { 20 20 "ELF_HEADER_STATE", 21 21 "ELF_PROGRAM_HEADER_STATE", -
trunk/softs/tsar_boot/src/boot_ioc.c
r425 r554 4 4 5 5 static struct sdcard_dev _sdcard_device; 6 static struct spi_dev * _spi_device = ( struct spi_dev * )IOC_BASE;6 static struct spi_dev *const _spi_device = ( struct spi_dev * )IOC_BASE; 7 7 8 8 #endif // end ifndef SOCLIB_IOC -
trunk/softs/tsar_boot/src/reset.S
r502 r554 139 139 /* Initializes stack pointer */ 140 140 141 la k1, seg_stack_base 142 li k0, BOOT_STACK_SIZE 143 addu sp, k1, k0 /* sp <= seg_stack_base + BOOT_STACK_SIZE */ 141 la sp, stk 144 142 145 143 la a0, versionstr … … 220 218 .set reorder 221 219 220 .section .data 221 .space BOOT_STACK_SIZE 222 stk: 223 .space 1 224 222 225 /* 223 226 * vim: tabstop=4 : shiftwidth=4 : expandtab
Note: See TracChangeset
for help on using the changeset viewer.