Advertisement
frankchang0125

Untitled

Oct 17th, 2012
3,112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ARM 0.38 KB | None | 0 0
  1. /*
  2.  * These are defined in the board-specific linker script.
  3.  * Subtracting _start from them lets the linker put their
  4.  * relative position in the executable instead of leaving
  5.  * them null.
  6.  */
  7. .globl _bss_start_ofs
  8. _bss_start_ofs:
  9.     .word __bss_start - _start
  10.  
  11. .globl _bss_end_ofs
  12. _bss_end_ofs:
  13.     .word __bss_end__ - _start
  14.  
  15. .globl _end_ofs
  16. _end_ofs:
  17.     .word _end - _start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement