QEMU-PPC stayed on OpenBIOS screen.

About Qemu-system-ppc, a PPC Mac emulator for Windows, macOS and Linux that can run Mac OS 9.0 up to Mac OS X 10.5

Moderators: Cat_7, Ronald P. Regensburg

Post Reply
User avatar
MacPlussed
Inquisitive Elf
Posts: 25
Joined: Wed Apr 11, 2018 2:42 pm

QEMU-PPC stayed on OpenBIOS screen.

Post by MacPlussed »

Hi I have been a QEMU user for a long time. I have not seen this error even once. Could you tell me how I can solve it?
Image

If it is because of the codes I wrote, will you say something because it is very important for me:

Code: Select all

qemu-system-ppc.exe -M mac99 -m 512 -prom-env boot-args=-v -prom-env 'vga-ndrv?=true -boot d -drive file=macos_91_ppc.iso,format=raw,media=cdrom -drive file=MacOSX.img,format=raw,media=disk -device usb-mouse -device usb-kbd -netdev user,id=network01 -device sungem,netdev=network01
Last edited by Cat_7 on Wed Apr 11, 2018 8:29 pm, edited 1 time in total.
Reason: Edit reason: removed link below picture.
User avatar
adespoton
Forum All-Star
Posts: 4273
Joined: Fri Nov 27, 2009 5:11 am
Location: Emaculation.com
Contact:

Re: QEMU-PPC stayed on OpenBIOS screen.

Post by adespoton »

That error has been on the QEMU-PPC console since at least the beginning of OS 9 support -- I seem to recall it even on the old builds with the inverted SDL color palette. It's documented; don't worry unduly about it. There's no dedicated NVRAM partition created at this point, so the emulator properly falls back to using a space at 1400h.
User avatar
MacPlussed
Inquisitive Elf
Posts: 25
Joined: Wed Apr 11, 2018 2:42 pm

Re: QEMU-PPC stayed on OpenBIOS screen.

Post by MacPlussed »

adespoton wrote:That error has been on the QEMU-PPC console since at least the beginning of OS 9 support -- I seem to recall it even on the old builds with the inverted SDL color palette. It's documented; don't worry unduly about it. There's no dedicated NVRAM partition created at this point, so the emulator properly falls back to using a space at 1400h.
It's been going too long this thing never goes away. :shock:
User avatar
adespoton
Forum All-Star
Posts: 4273
Joined: Fri Nov 27, 2009 5:11 am
Location: Emaculation.com
Contact:

Re: QEMU-PPC stayed on OpenBIOS screen.

Post by adespoton »

The problem you're having occurs after the error message; the error message is expected but the pause after the fact is the real problem. The two aren't related.

Your config line seems fine, assuming your install CD image and target image exist where listed. Are you using an OpenBIOS and VGA driver file that are compatible with your Feb 22 build of QEMU?
User avatar
Cat_7
Expert User
Posts: 6170
Joined: Fri Feb 13, 2004 8:59 am
Location: Sittard, The Netherlands

Re: QEMU-PPC stayed on OpenBIOS screen.

Post by Cat_7 »

I assume you are trying to run a qemu build you downloaded from our forum. Then your command line has errors:

Code: Select all

qemu-system-ppc.exe -M mac99 -m 512 -prom-env boot-args=-v -prom-env 'vga-ndrv?=true -boot d -drive file=macos_91_ppc.iso,format=raw,media=cdrom -drive file=MacOSX.img,format=raw,media=disk -device usb-mouse -device usb-kbd -netdev user,id=network01 -device sungem,netdev=network01
It should be:

Code: Select all

qemu-system-ppc.exe -L pc-bios -M mac99 -m 512 -prom-env "boot-args=-v" -prom-env "vga-ndrv?=true" -boot d -drive file=macos_91_ppc.iso,format=raw,media=cdrom -drive file=MacOSX.img,format=raw,media=disk -device usb-mouse -device usb-kbd -netdev user,id=network01 -device sungem,netdev=network01
Notice the -L pc-bios to point to the pc-bios folder, and the correct "" around the -prom-env parameters.

Best,
Cat_7
User avatar
MacPlussed
Inquisitive Elf
Posts: 25
Joined: Wed Apr 11, 2018 2:42 pm

Re: QEMU-PPC stayed on OpenBIOS screen.

Post by MacPlussed »

Cat_7 wrote:I assume you are trying to run a qemu build you downloaded from our forum. Then your command line has errors:

Code: Select all

qemu-system-ppc.exe -M mac99 -m 512 -prom-env boot-args=-v -prom-env 'vga-ndrv?=true -boot d -drive file=macos_91_ppc.iso,format=raw,media=cdrom -drive file=MacOSX.img,format=raw,media=disk -device usb-mouse -device usb-kbd -netdev user,id=network01 -device sungem,netdev=network01
It should be:

Code: Select all

qemu-system-ppc.exe -L pc-bios -M mac99 -m 512 -prom-env "boot-args=-v" -prom-env "vga-ndrv?=true" -boot d -drive file=macos_91_ppc.iso,format=raw,media=cdrom -drive file=MacOSX.img,format=raw,media=disk -device usb-mouse -device usb-kbd -netdev user,id=network01 -device sungem,netdev=network01
Notice the -L pc-bios to point to the pc-bios folder, and the correct "" around the -prom-env parameters.

Best,
Cat_7
Thank you very very very much. It Works. :wink:
Post Reply