1/*
2 * Copyright 2024 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	chosen {
9		zephyr,ram-console = &snippet_ram_console;
10	};
11
12	snippet_ram_console: memory@d0100000 {
13		compatible = "zephyr,memory-region";
14		reg = <0xd0100000 DT_SIZE_K(4)>;
15		zephyr,memory-region = "RAM_CONSOLE";
16	};
17};
18