Open
Description
Currently this only checks for overflows in single-ram region called RAM
.
Eventually it would be awesome to support multi region layouts like:
MEMORY
{
RAM : org = 0x20000000, len = 96k /* SRAM1 */
RAM2 : org = 0x10000000, len = 32K /* SRAM2 */
}
The "line-by-line" parser only looks for RAM: org = ...
, but I am not sure if this is the actual blocker?
Also minor side issue;
This line:
Line 61 in e123f17
Should probably read
MEMORY.RAM not found after scanning linker scripts
? Missing the not
Activity