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.elf -nographic -sd sd.bin
7