summaryrefslogtreecommitdiff
path: root/qemu.sh
diff options
context:
space:
mode:
Diffstat (limited to 'qemu.sh')
-rwxr-xr-xqemu.sh11
1 files changed, 5 insertions, 6 deletions
diff --git a/qemu.sh b/qemu.sh
index 2466cf3..f9e7930 100755
--- a/qemu.sh
+++ b/qemu.sh
@@ -2,8 +2,6 @@
# Start the QEMU emulator with options doing the following :
# - GDB remote access on the local TCP port 1234
-# - 64MB of physical memory (RAM)
-# - No video device (automatically sets the first serial port as the console)
#
# In order to dump all exceptions and interrupts to a log file, you may add
# the following options :
@@ -12,8 +10,9 @@
#
# Note that these debugging options do not work when KVM is enabled.
-qemu-system-i386 \
+qemu-system-arm \
+ -M netduino2 \
+ -cpu cortex-m3 \
-gdb tcp::1234 \
- -m 64 \
- -nographic \
- -kernel x1
+ -monitor stdio \
+ -d guest_errors -kernel x1