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

2005-05-23 Thread J. Mayer
On Sun, 2005-05-22 at 22:07 +0300, Tero Kaarlela wrote: > 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(); >

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

2005-05-22 Thread Tero Kaarlela
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) {