Compare commits

...

3 Commits

Author SHA1 Message Date
Wolfgang Müller d6195c1a5b Makefile: Use variable for qemu
This way users can specify which backend to use without having to change
the Makefile itself.
2023-03-27 17:16:40 +02:00
Wolfgang Müller eabd5be84b Makefile: Quench qemu warning about image format
qemu deems format autodetection to be dangerous on raw images, so make
sure we specify exactly what we want to do. This will quench a
scary-looking warning right when launching PonyDOS. There's no
functional change otherwise.
2023-03-27 17:16:40 +02:00
shikhin 81695d4403 CrazyEttin wobsite 2023-03-27 20:43:40 +05:30
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
NASM = nasm
PYTHON = python3
QEMU = qemu-system-i386
.SUFFIXES:
.SUFFIXES: .bin .asm .ans .wall
@ -31,7 +32,7 @@ memory.bin: ponydos.inc
$(PYTHON) process_wallpaper.py $@ $< 7 0 0 0
run: ponydos.img
qemu-system-i386 -fda $<
$(QEMU) -drive file=$<,index=0,if=floppy,format=raw
clean:
rm -f *.bin *.img *.wall ponydos.inc

View File

@ -27,7 +27,8 @@ contact us to merge it in.
### Credits
This is a parody of [klange](https://github.com/klange)'s wonderful
[PonyOS](https://ponyos.org/). The creators of this project, CrazyEttin,
[PonyOS](https://ponyos.org/). The creators of this project,
[CrazyEttin](https://ahti.space/~crazyettin/),
[nortti](https://ahti.space/~nortti), and [shikhin](https://shikhin.in) hang out
in `#offtopia` on [libera.chat](https://libera.chat/).