• Butterfly
    Butterfly
    ThorstenS
    Posts: 64 from 2014/1/20
    So sieht es jetzt aktuell (Stand: 28.02.24) bei mir aus:

    C:\Programme\qemu\qemu-system-ppc -M pegasos2 -m 2048 -kernel C:\Programme\qemu\MorphOS\boot.img -device ati-vga,model=rage128p,guest_hwcursor=true -drive if=none,id=hd,file=C:\Programme\qemu\MorphOS\MorphOS.img,format=raw -device ide-hd,drive=hd,bus=ide.0 -drive file=fat:rw:C:\Programme\qemu\MorphOS\transfer,id=ufat,format=raw,if=none -device usb-storage,drive=ufat -device rtl8139,netdev=net0 -netdev user,id=net0 -rtc base=localtime -display gtk,zoom-to-fit=on -full-screen -serial stdio


    Wie man sieht, gibt es eine Änderung bei der Angabe der verwendeten Grafikkarte. Neben dem eigentlichen Aufruf Code:
    -device ati-vga
    habe ich nunmehr auch den Namen der Grafikkarte selbst Code:
    model=rage128p
    eingefügt. QEMU würde hier auch die Nutzung einer ATI 7000 Grafikkarte für den Grafikchip - rv100 - anbieten. Laut der MorphOS-Webseite, unterstützt MorphOS die ATI 7000. In meinem Test blieb der Monitor allerdings schwarz.

    Weggefallen in diesem Zusammenhang ist der Befehl Code:
    -vga none
    . VGA none wird nur benutzt, wenn man - kein - Anzeigegerät wählt. Da wir aber die Rage128Pro Grafikkarte emulieren, ist das unser Anzeigegerät.

    Eine gute Übersicht zu den möglichen Anzeigegeräten unter QEMU findet man auf folgender Webseite: https://www.kraxel.org/blog/2019/09/display-devices-in-qemu/


    ENGLISH:
    As you can see, there is a change in specifying the graphics card used. In addition to the actual call Code:
    -device ati-vga
    , I have now also inserted the name of the graphics card itself Code:
    model=rage128p
    . QEMU would also offer the use of an ATI 7000 graphics card for the graphics chip - rv100. According to the MorphOS website, MorphOS supports the ATI 7000. In my test, however, the monitor remained black. The command Code:
    -vga none
    has been omitted in this context. VGA none is only used if you select - no - display device. But since we are emulating the Rage128Pro graphics card, that is our display device. A good overview of the possible display devices under QEMU can be found on the following website: https://www.kraxel .org/blog/2019/09/display-devices-in-qemu/
  • »28.02.24 - 11:30
    Profile