Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2014
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ENTRY(_Homebrew)
  2. SECTIONS
  3. {
  4. . = 0x080C3EE0;
  5. .text : {
  6. bootloader.o (START_VECTOR)
  7. *(.text)
  8. }
  9. .data : { *(.data) }
  10. .bss : { *(.bss COMMON) }
  11. heap_low = .;
  12. . = . + 0x4000; /* 64kB of Heap memory */
  13. heap_top = .;
  14. . = ALIGN(4);
  15. . = . + 0x1000; /* 4kB of stack memory */
  16. stack_top = .;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement