Attention to Internet Explorer users: ROHM website does not recommend browsing in IE 11. Please use latest browser to ensure the best performance on ROHM website.
If you want to allocate the const variable in segment 1 or higher, qualify the const variable with __far. Also, when specifying the allocation address, be sure to separate the physical segment address and offset address with a colon (:).
Example 1) When specifying an address with the Absolute pragma #pragma ABSOLUTE g_xxxx 0x1: 0xDFF0 const uint32_t __far g_xxxx = 0x00000000;
Example 2) When allocating to a segment with the SEGCONST pragma and specifying an address for that segment #pragma SEGCONST __far "rom1" const uint32_t __far g_xxxx = 0x00000000; In the Linker> Segment setting of LEIIDE-U16, specify (rom1-1: 0dff0h) for the TABLE address specification.