Changeset 94ea8a8 in rtems


Ignore:
Timestamp:
09/13/18 09:34:23 (6 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
7b93d857
Parents:
7916139
git-author:
Sebastian Huber <sebastian.huber@…> (09/13/18 09:34:23)
git-committer:
Sebastian Huber <sebastian.huber@…> (09/17/18 06:56:32)
Message:

bsp/tqm8xx: Clear sbss section

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bsps/powerpc/tqm8xx/start/start.S

    r7916139 r94ea8a8  
    108108
    109109        /*
    110          * ROM/RAM startup: clear bss in SDRAM
    111          */
    112         LA      r3, bsp_section_bss_begin  /* get start address of bss section */
    113         LWI     r4, bsp_section_bss_size   /* get size of bss section */
    114         bl      mpc8xx_zero_4          /* Clear the bss section */
     110         * ROM/RAM startup: clear sbss/bss in SDRAM
     111         */
     112        LA      r3, bsp_section_sbss_begin
     113        LWI     r4, bsp_section_sbss_size
     114        bl      mpc8xx_zero_4
     115        LA      r3, bsp_section_bss_begin
     116        LWI     r4, bsp_section_bss_size
     117        bl      mpc8xx_zero_4
    115118        /*
    116119         * call boot_card
Note: See TracChangeset for help on using the changeset viewer.