1@echo off
2if exist sd.bin goto run
3qemu-img create -f raw sd.bin 64M
4
5:run
6qemu-system-arm -M vexpress-a9 -kernel rtthread.bin -serial stdio -sd sd.bin -S -s
7