mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 14:55:08 +00:00
8 lines
177 B
Bash
Executable file
8 lines
177 B
Bash
Executable file
#!/bin/sh
|
|
|
|
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
|
|
|