mirror of
https://github.com/dougg3/mac-rom-simm-programmer.git
synced 2024-11-24 04:31:20 +00:00
Update linker scripts with correct RAM/flash sizes
Change code style so that it's easy to see the number of kilobytes too.
This commit is contained in:
parent
bc9b0245ba
commit
78c4068071
@ -1,8 +1,8 @@
|
||||
/* Linker script to configure memory regions. */
|
||||
MEMORY
|
||||
{
|
||||
FLASH (rx) : ORIGIN = 0x00100000, LENGTH = 0x1000 /* 4K */
|
||||
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x2000 /* 8K */
|
||||
FLASH (rx) : ORIGIN = 0x00100000, LENGTH = 4*1024
|
||||
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 16*1024
|
||||
}
|
||||
|
||||
/* Library configurations */
|
||||
|
@ -1,8 +1,8 @@
|
||||
/* Linker script to configure memory regions. */
|
||||
MEMORY
|
||||
{
|
||||
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x8000 /* 32k */
|
||||
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x2000 /* 8k */
|
||||
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 128*1024
|
||||
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 16*1024
|
||||
}
|
||||
|
||||
/* Library configurations */
|
||||
|
Loading…
Reference in New Issue
Block a user