mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
286e27ef40
The kernel doesn't run in QEMU right now and I don't know why.
9 lines
177 B
Bash
Executable File
9 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
|
|
|