Skip to content

Commit 190b99f

Browse files
committed
esp32s3: correct iram origin
1 parent a851feb commit 190b99f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

targets/esp32s3.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MEMORY
55
{
66
/* Note: DRAM and IRAM below are actually in the same 416K address space. */
77
DRAM (rw) : ORIGIN = 0x3FC88000, LENGTH = 416K /* Internal SRAM 1 (data bus) */
8-
IRAM (x) : ORIGIN = 0x40378000, LENGTH = 416K /* Internal SRAM 1 (instruction bus) */
8+
IRAM (x) : ORIGIN = 0x40370000, LENGTH = 416K /* Internal SRAM 1 (instruction bus) */
99

1010
/* Note: DROM and IROM below are actually in the same 32M address space. */
1111
DROM (r) : ORIGIN = 0x3C000000, LENGTH = 32M /* Data bus (read-only) */

0 commit comments

Comments
 (0)