In the linker mapping file (.mp1) there is a column titled "Type" with R
,W
,X
, and I
as possible attributes, for example
RW--
R-XI
R---
R--I
Neither the manual, nor any other user guide mentions what these attributes mean. Checking my own code it is obvious that R
means read, W
means write, and X
means code (executable), so for example, a variable is RW-?
, a constant R--?
, and a function R-X?
Here I noted with ?
the presence or absence of I
, for which I could not find any meaning.
Does anyone know what I
in the RWXI
means?