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@93d00000 {
13		compatible = "zephyr,memory-region";
14		reg = <0x93d00000 DT_SIZE_K(4)>;
15		zephyr,memory-region = "RAM_CONSOLE";
16	};
17};
18