document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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
');