diff --git a/Kernel/run b/Kernel/run index f3454dbf4e..688f381619 100755 --- a/Kernel/run +++ b/Kernel/run @@ -1,5 +1,8 @@ #!/bin/sh -bochs -q -f .bochsrc +if [ "$1" = "q" ]; then + qemu-system-i386 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents #$@ +else + bochs -q -f .bochsrc +fi -#qemu-system-i386 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents $@