qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] There is a bug in ppc_prep.c?


From: Tero Kaarlela
Subject: [Qemu-devel] There is a bug in ppc_prep.c?
Date: Sun, 22 May 2005 22:07:56 +0300
User-agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.0.1) Gecko/20020919 IBM Web Browser for OS/2

Hi,

    I just browsed CVS repository and found following from ppc_prep.c:

/* Check LE mode */
       if (val & 0x02) {
           printf("Little Endian mode isn't supported (yet ?)\n");
           abort();

  shouldnt this be ie:

/* Check LE mode */
       if (val & 0x02) {
           printf("Switching to Little Endian mode...");
          /* abort(); */


?

Tero Kaarlela






reply via email to

[Prev in Thread] Current Thread [Next in Thread]