I want to place my .bss section in L1DSRAM to speed up access to global variables, but I don't want to use up 32k of precious fast memory. Is there a way to set size limits on compiler sections? I would like to limit the .bss section size to something smaller and have the compiler/linker give me a warning/error if I exceed this new smaller limit with near global data. I basically want to put the (smaller) .bss section and my own reserved section into internal RAM. The sum of the 2 is > 32K, so I can't just lump my own section in with .bss.