29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
|
|
:name: RISC-V platform with a verilated UART
|
||
|
|
:description: This script runs Zephyr printing out on a verilated UART.
|
||
|
|
|
||
|
|
$name?="UARTLite"
|
||
|
|
|
||
|
|
using sysbus
|
||
|
|
mach create $name
|
||
|
|
machine LoadPlatformDescription @platforms/cpus/verilated/riscv_verilated_uartlite.repl
|
||
|
|
|
||
|
|
$bin?=@https://dl.antmicro.com/projects/renode/uartlite--custom_uart_demo--zephyr.elf-s_184340-129eb92404f437a466cd8700f6743b1c5b0da912
|
||
|
|
$uartLinux?=@https://dl.antmicro.com/projects/renode/libVuartlite-Linux-x86_64-12746432362.so-s_2065720-1c7a212b50fdb10a90b5be713b106a49d3d81c2e
|
||
|
|
$uartWindows?=@https://dl.antmicro.com/projects/renode/libVuartlite-Windows-x86_64-12746432362.dll-s_3233193-267d2ef5f2f89c78bbe931d861b530c5bb461ab6
|
||
|
|
$uartMacOS?=@https://dl.antmicro.com/projects/renode/libVuartlite-macOS-x86_64-12746432362.dylib-s_219096-1d5ef6dee55d7c7068de26a134b347ffbcd2fd5f
|
||
|
|
|
||
|
|
showAnalyzer uart
|
||
|
|
|
||
|
|
uart SimulationFilePathLinux $uartLinux
|
||
|
|
uart SimulationFilePathWindows $uartWindows
|
||
|
|
# uart SimulationFilePathMacOS $uartMacOS
|
||
|
|
|
||
|
|
macro reset
|
||
|
|
"""
|
||
|
|
sysbus LoadELF $bin
|
||
|
|
# set pc to the beginning of ROM where `vinit` is defined that sets `mtvec` and jumps directly to `__start`
|
||
|
|
sysbus.cpu PC `sysbus GetSymbolAddress "vinit"`
|
||
|
|
"""
|
||
|
|
runMacro $reset
|
||
|
|
|