Controls the output of C strings to the read only data section.
#pragma readonly_strings on | off | reset
If you enable this pragma, C strings used in your source code (for example, " hello") are output to the read-only data section (.rodata) instead of the global data section (.data). In effect, these strings act like const char *, even though their type is really char *.
For the DSP56800, this pragma corresponds to the "Make Strings Read Only" panel setting in the M56800 Processor settings panel. To check this setting, use __option (readonly_strings), described in Checking Pragma Settings.
For the DSP56800E, there is no "Make Strings Read Only" panel setting in the M56800E Processor settings panel.