8 lines
135 B
Bash
Executable File
8 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
set -xue
|
|
|
|
# QEMU path
|
|
QEMU=qemu-system-riscv32
|
|
|
|
$QEMU -machine virt -bios default -nographic -serial mon:stdio --no-reboot
|