Advertisement
bladamson

Untitled

Jun 23rd, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 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. STARTUP: load = RAM, type = ro;
  13. INIT: load = RAM, type = ro, optional = yes;
  14. CODE: load = RAM, type = ro;
  15. RODATA: load = RAM, type = ro;
  16. DATA: load = RAM, type = rw, define = yes;
  17. BSS: load = RAM, type = bss, define = yes;
  18. }
  19.  
  20. FEATURES {
  21. CONDES: segment = STARTUP,
  22. type = constructor,
  23. label = __CONSTRUCTOR_TABLE__,
  24. count = __CONSTRUCTOR_COUNT__;
  25. CONDES: segment = STARTUP,
  26. type = destructor,
  27. label = __DESTRUCTOR_TABLE__,
  28. count = __DESTRUCTOR_COUNT__;
  29. }
  30.  
  31. SYMBOLS {
  32. __STACKSIZE__: value = $0200, weak = yes;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement