1/*
2 * Copyright (c) 2025 Silicon Laboratories Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 *
6 * Place text sections tagged with Silicon Labs code classification annotations into flash.
7 */
8
9SECTION_PROLOGUE(.cc_text,,)
10{
11    _cc_text_start = .;
12    *(SORT_BY_ALIGNMENT(text_*[0-9]))
13    _cc_text_end = .;
14} GROUP_LINK_IN(ROMABLE_REGION)
15_cc_text_size = _cc_text_end - _cc_text_start;
16