From 52be99d8c0862ff87db9a4f9ccec1ac4b5f7caed Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Fri, 2 Sep 2022 09:18:52 +0200 Subject: added a quite unsorted first version of a floppy boot loader --- floppy/run_qemu.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 floppy/run_qemu.sh (limited to 'floppy/run_qemu.sh') diff --git a/floppy/run_qemu.sh b/floppy/run_qemu.sh new file mode 100755 index 0000000..ebde263 --- /dev/null +++ b/floppy/run_qemu.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +sleep 2 && \ +qemu-system-i386 -cpu 486 -m 32M \ + -drive "file=floppy1.img,if=floppy,format=raw" \ + -netdev user,id=net0,net=10.0.0.0/24,host=10.0.0.2,dhcpstart=10.0.0.16,hostfwd=tcp::8080-:80,hostfwd=udp::8081-:81 \ + -device rtl8139,netdev=net0 -- cgit v1.2.3-54-g00ecf