1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

Run QEMU with the possibility to attach gdb.

This commit is contained in:
Andreas Kling 2018-11-09 18:35:17 +01:00
parent 985074c790
commit de38e63d3e
2 changed files with 3 additions and 3 deletions

View file

@ -3,6 +3,6 @@
if [ "$1" = "b" ]; then
bochs -q -f .bochsrc
else
qemu-system-i386 -m 32 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents #$@
qemu-system-i386 -s -m 32 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents #$@
fi