Changeset 366 for soft/giet_vm/giet_boot
- Timestamp:
- Jul 23, 2014, 4:16:05 PM (10 years ago)
- Location:
- soft/giet_vm/giet_boot
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_boot/boot.c
r359 r366 132 132 //////////////////////////////////////////////////////////////////////////// 133 133 134 extern void boot_entry(); 135 134 136 // This global variable is allocated in "fat32.c" file 135 137 extern fat32_fs_t fat; … … 2510 2512 if ( (nprocs > 0) && ((clusterid != 0) || (p != 0)) ) 2511 2513 { 2512 _xcu_send_wti( cluster_xy, p, (unsigned int)boot_ init);2514 _xcu_send_wti( cluster_xy, p, (unsigned int)boot_entry ); 2513 2515 } 2514 2516 } -
soft/giet_vm/giet_boot/boot.ld
r321 r366 12 12 /****************************************************************************/ 13 13 14 ENTRY(boot_ init)14 ENTRY(boot_entry) 15 15 16 16 /****************************************************************************/ -
soft/giet_vm/giet_boot/boot_entry.S
r365 r366 45 45 /* (proc_id is a "continuous" index, while proc_xyl is a "fixed format" index */ 46 46 47 mfc0 k0, CP0_ EBASE47 mfc0 k0, CP0_PROCID 48 48 andi k0, k0, 0x3FF /* k0 <= proc_xyl */ 49 49 la t7, NB_PROCS_MAX /* t7 <= NBPROCS */
Note: See TracChangeset
for help on using the changeset viewer.