mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 09:50:15 +01:00
Signed-off-by: iabdalkader <i.abdalkader@gmail.com> Signed-off-by: Damien George <damien@micropython.org>
15 lines
515 B
ArmAsm
15 lines
515 B
ArmAsm
#include "mcu/ensemble.ld.S"
|
|
|
|
/* Define ROMFS partition locations. */
|
|
#if CORE_M55_HP
|
|
/* The HP core has access to the external OSPI1 flash and MRAM ROMFS partitions. */
|
|
_micropy_hw_romfs_part0_start = 0xc1000000;
|
|
_micropy_hw_romfs_part0_size = 16M;
|
|
_micropy_hw_romfs_part1_start = ORIGIN(MRAM_FS);
|
|
_micropy_hw_romfs_part1_size = LENGTH(MRAM_FS);
|
|
#else
|
|
/* The HP core has access to the MRAM ROMFS partition. */
|
|
_micropy_hw_romfs_part0_start = ORIGIN(MRAM_FS);
|
|
_micropy_hw_romfs_part0_size = LENGTH(MRAM_FS);
|
|
#endif
|