Files
mkrtos-real/mkrtos_script/run_m3.sh

15 lines
276 B
Bash
Raw Normal View History

#!/bin/bash
2023-12-23 22:28:42 +08:00
# netduino2
if [ -z "$1" ]; then
2023-12-23 22:28:42 +08:00
echo "请输入板卡名字,使用默认板卡:"
echo "netduino2"
set $1 "netduino2"
else
echo "$1"
fi
2023-08-27 16:52:53 +08:00
qemu-system-arm -machine\
2023-12-23 22:28:42 +08:00
$1 -cpu cortex-m3 \
2025-03-10 22:45:24 +08:00
-nographic -m size=32 \
2023-08-20 20:52:23 +08:00
-kernel $PWD/build/output/kernel.img