commonsense-sw/memory.x
Andreas Tsouchlos 05dd72f55c Basic project setup (#1)
Reviewed-on: #1
Co-authored-by: Andreas Tsouchlos <an.tsouchlos@gmail.com>
Co-committed-by: Andreas Tsouchlos <an.tsouchlos@gmail.com>
2024-11-01 23:49:53 +00:00

14 lines
309 B
Plaintext

/*MEMORY
{
FLASH : ORIGIN = 0x00000000, LENGTH = 256K
RAM : ORIGIN = 0x20000000, LENGTH = 24K
}*/
MEMORY
{
/* NOTE 1 K = 1 KiBi = 1024 bytes */
/* NRF52832 with Softdevice S132 7.x and 6.x */
FLASH : ORIGIN = 0x00026000, LENGTH = 512K - 152K
RAM : ORIGIN = 0x20000000 + 30K, LENGTH = 64K - 30K
}