Skip to content

Commit

Permalink
script.ld: Fix LNX and LNSP SRAM size
Browse files Browse the repository at this point in the history
(cherry picked from commit e502be1)
  • Loading branch information
Xavier Chapron authored and fbeutin-ledger committed Jun 12, 2024
1 parent 76a2119 commit 325c708
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion target/nanos2/script.ld
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ MEMORY

FLASH (rx) : ORIGIN = 0xc0de0000, LENGTH = 400K
DATA (r) : ORIGIN = 0xc0de0000, LENGTH = 400K
SRAM (rwx) : ORIGIN = 0xda7a0000, LENGTH = 30K
SRAM (rwx) : ORIGIN = 0xda7a0000, LENGTH = 44K
}

PAGE_SIZE = 512;
Expand Down
2 changes: 1 addition & 1 deletion target/nanox/script.ld
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ MEMORY

FLASH (rx) : ORIGIN = 0xc0de0000, LENGTH = 400K
DATA (r) : ORIGIN = 0xc0de0000, LENGTH = 400K
SRAM (rwx) : ORIGIN = 0xda7a0000, LENGTH = 30K
SRAM (rwx) : ORIGIN = 0xda7a0000, LENGTH = 28K
}

PAGE_SIZE = 256;
Expand Down

0 comments on commit 325c708

Please sign in to comment.