1/*
2 * Copyright (c) 2023 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <zephyr/linker/sections.h>
8
9SECTIONS
10{
11	SECTION_PROLOGUE (.native_sim_if.data,,)
12	{
13		KEEP(*(.native_sim_if.data));
14	}
15} INSERT AFTER .data;
16
17SECTIONS
18{
19	SECTION_PROLOGUE (.native_sim_if,,)
20	{
21		KEEP(*(.native_sim_if));
22		KEEP(*(.native_sim_if.*));
23	}
24} INSERT AFTER .text;
25