Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

13 lignes
364B

  1. MEMORY {
  2. LOADADDR: start = $0800, size = $0002, type = ro, file = %O;
  3. MAIN: start = $0801, size = $97FF, type = rw, file = %O;
  4. }
  5. SEGMENTS {
  6. LOADADDR: load = LOADADDR, type = ro;
  7. BASIC: load = MAIN, type = ro;
  8. CODE: load = MAIN, type = ro;
  9. RODATA: load = MAIN, type = ro;
  10. BSS: load = MAIN, type = bss, define = yes;
  11. }

Powered by TurnKey Linux.