Guest User

Untitled

a guest
Jun 20th, 2012
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. MEMORY {
  2. ZP: start = $0, size = $100, type = rw, define = yes;
  3. PSTACK: start = $100, size = $100, type = rw, define = yes;
  4. RSTACK: start = $200, size = $100, type = rw, define = yes;
  5. BUSOUT: start = $300, size = $100, type = rw, define = yes;
  6. BUSIN: start = $400, size = $100, type = rw, define = yes;
  7. RAM: start = $500, size = $FA00, type = rw, define = yes;
  8. }
  9.  
  10. SEGMENTS {
  11. ZEROPAGE: load = ZP, type = zp, define = yes;
  12. DATA: load = RAM, type = rw, define = yes;
  13. BSS: load = RAM, type = bss, define = yes;
  14. HEAP: load = RAM, type = bss, optional = yes;
  15. STARTUP: load = RAM, type = ro;
  16. INIT: load = RAM, type = ro, optional = yes;
  17. CODE: load = RAM, type = ro;
  18. RODATA: load = RAM, type = ro;
  19. }
  20.  
  21. FEATURES {
  22. CONDES: segment = STARTUP,
  23. type = constructor,
  24. label = __CONSTRUCTOR_TABLE__,
  25. count = __CONSTRUCTOR_COUNT__;
  26. CONDES: segment = STARTUP,
  27. type = destructor,
  28. label = __DESTRUCTOR_TABLE__,
  29. count = __DESTRUCTOR_COUNT__;
  30. }
  31.  
  32. SYMBOLS {
  33. __STACKSIZE__: value = $0200, weak = yes;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment