Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

memory.x 415B

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;