 | A166 User's Guide |  |
|
|
| CGROUP Assembler Statement| Arguments |
group CGROUP section <[>, section ...<]>
| | Description | The CGROUP statement defines a group of code sections where group is the name of the group to define and sections are the sections to add to the group. Note - Code groups may not exceed 64K Bytes in total size and may only contain code sections.
- Code groups are located as one logical unit to a 64K Byte segment.
- The order of sections in a group may change after linking.
- If one section in the group is absolute, the group is absolute. The order of sections within that group depends on the absolute section.
| | See Also | DGROUP, SECTION | | Example |
GCODE CGROUP C100, C200
C100 SECTION CODE PUBLIC 'ROM1'
.
.
.
C100 ENDS
C200 SECTION CODE PUBLIC 'FLASH'
.
.
.
C200 ENDS
|
|
|