Aucune description
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.

12345678910111213
  1. /* Parts taken from https://github.com/therealprof/mkw41z-hal/blob/master/memory.x */
  2. MEMORY
  3. {
  4. FLASH : ORIGIN = 0x00000000, LENGTH = 128K
  5. RAM : ORIGIN = 0x1ffff000, LENGTH = 16K
  6. /* This chip has funny security bits at 0x400 ... */
  7. FCF : ORIGIN = 0x00000400, LENGTH = 16
  8. }
  9. /* Skip the whole sector with the security bits and let program code start
  10. * after to prevent nasty mishaps */
  11. _stext = 0x00000800;