1/* 2 * Copyright (c) 2024 Antmicro <www.antmicro.com> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8 9#include <cortex_r8_virt.dtsi> 10 11/ { 12 model = "Cortex-R8 Virtual target"; 13 compatible = "renode,cortex-r8-virtual"; 14 chosen { 15 zephyr,sram = &sram0; 16 zephyr,flash = &flash0; 17 zephyr,console = &uart0; 18 zephyr,shell-uart = &uart0; 19 }; 20}; 21 22&uart0 { 23 status = "okay"; 24 current-speed = <115200>; 25 clock-frequency = <99999901>; 26}; 27