mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
8 lines
186 B
Bash
Executable file
8 lines
186 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$1" = "b" ]; then
|
|
bochs -q -f .bochsrc
|
|
else
|
|
qemu-system-i386 -s -m 32 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents #$@
|
|
fi
|
|
|