1:name: Micropython @ LiteX VexRiscv
2:description: This script runs Micropython on LiteX+VexRiscv platform (without LiteX BIOS bootloader)
3
4$name?="LiteX+VexRiscv"
5
6using sysbus
7mach create $name
8machine LoadPlatformDescription @platforms/cpus/litex_vexriscv_micropython.repl
9
10$bin?=@https://dl.antmicro.com/projects/renode/litex_vexriscv--micropython.elf-s_2713384-e2d6be24b6a0de3d1bcf3161e38191b0e4489010
11
12showAnalyzer sysbus.uart
13
14macro reset
15"""
16    sysbus LoadELF $bin
17"""
18
19runMacro $reset
20
21