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




_______________________________________________
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel

Reply via email to