This pragma controls the definition of a custom section.
#pragma define_section <sectname> <istring> [ <ustring> ] [ <accmode> ]
Arguments:
<sectname>
Identifier by which this user-defined section is referenced in the source, that is, via the following instructions:
#pragma section <sectname> begin
__declspec(<sectname>)
<istring>
Section name string for initialized data assigned to <section>.
For example:
".data"
Optional Arguments:
<ustring>
Section name string for uninitialized data assigned to <section>. If ustring is not specified then istring is used.
<accmode>
One of the following indicates the attributes of the section
| R | Readable |
| RW (default) | Readable and writable |
| RX | Readable and executable |
| RWX | Readable, writable, and executable |