19 lines
446 B
Plaintext
19 lines
446 B
Plaintext
|
|
:name: Cortex-A53
|
||
|
|
:description: This script runs the Zephyr hello_world sample on a 64-bit ARM Cortex-A53.
|
||
|
|
|
||
|
|
$bin?=@https://dl.antmicro.com/projects/renode/cortex_a53-zephyr-hello_world.elf-s_34096-272b1e50f90c8240d875daf679223f2d769e77dd
|
||
|
|
$name?="ARM Cortex-A53"
|
||
|
|
|
||
|
|
using sysbus
|
||
|
|
mach create $name
|
||
|
|
|
||
|
|
machine LoadPlatformDescription @platforms/cpus/cortex-a53-gicv3.repl
|
||
|
|
|
||
|
|
showAnalyzer uart0
|
||
|
|
|
||
|
|
macro reset
|
||
|
|
"""
|
||
|
|
sysbus LoadELF $bin
|
||
|
|
"""
|
||
|
|
runMacro $reset
|