Re: [Qemu-devel] [PATCH] Add gcc 4.0 support

2006-02-15 Thread Johannes Schindelin
Hi, On Wed, 15 Feb 2006, Thiemo Seufer wrote: > If you describe a specific problem I can probably tell you if it > is covered by my patch. I had the impression something went wrong on MinGW32: I did not try myself, but IIRC there were multiple "ret" statements per compiled oplet. Since I was n

[Qemu-devel] [PATCH] pl110 bigendian

2006-02-15 Thread Piotr Esden-Tempski
Hi, Here is a patch that fixes the pl110 emulation on bigendian host machines. You can get it from http://www.esden.net/content/ qemu_pl110_bigendian.patch Cheers Esden -- Visit my Blog at http://www.esden.net and leave a Comment ;) qemu_pl110_bigendian.patch Description: Binary data

[Qemu-devel] [PATCH] qemu console improvements

2006-02-15 Thread Piotr Esden-Tempski
Hello everyone, I created a patch that adds some new features to the text console in qemu. New features are: - control ascii characters - backspace - tab - alert aka bell (it is being dropped now and not shown, proper handling has to be added) - ansi escape sequences

Re: [Qemu-devel] [PATCH] Add gcc 4.0 support

2006-02-15 Thread Thiemo Seufer
On Wed, Feb 15, 2006 at 05:20:07PM +0100, Johannes Schindelin wrote: > Hi, > > AFAIR gcc 4 had different problems on different platforms. Does your patch > solve them? I tested only Linux/powerpc and checked the disassembly there. I believe the patch will improve the situation generically for al

[Qemu-devel] [PATCH] Fix test for two's complement overflow

2006-02-15 Thread Ralf Baechle
Hi Fabrice, A sequence like addiu $r0, $r0, 1 addi$r0, $r0, -1 would result in an integer overflow exception on MIPS targets. This test fixes the test for a signed overflow done by the add, addi, sub and subi instructions. target-mips/op.c | 18 +- 1 fi

Re: [Qemu-devel] [PATCH] Add gcc 4.0 support

2006-02-15 Thread Johannes Schindelin
Hi, AFAIR gcc 4 had different problems on different platforms. Does your patch solve them? Ciao, Dscho ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

[Qemu-devel] 3D Graphic card

2006-02-15 Thread Ricardo Almeida
Hi,First, sorry if this is not the proper place to put this question, and second, thanks for making qemu :)I've search the mailing list and found messages regarding the creation of a 3D video card emulation (SiS 6326), but the last message I found is from 12 May 2004 at http://lists.gnu.org/archiv

[Qemu-devel] [PATCH] Add little endian MIPS configury

2006-02-15 Thread Thiemo Seufer
Hello All, the appended patch adds the configurations needed for mipsel support. Thiemo Index: .cvsignore === RCS file: /sources/qemu/qemu/.cvsignore,v retrieving revision 1.11 diff -u -p -r1.11 .cvsignore --- .cvsignore 6 Dec 20

[Qemu-devel] [PATCH] Add gcc 4.0 support

2006-02-15 Thread Thiemo Seufer
Hello all, the appended patch - Adds detection of gcc commandline flag support, based on the theory "If it exists, we want to use it". - Uses this to add enough gcc4 flag magic to OP_FLAGS, and remove the specialcasing for gcc3 as well as the bail out for gcc4. - Makes CFLAGS and OP_CLFAGS di

[Qemu-devel] [PATCH] Minor mips-related patchlet

2006-02-15 Thread Thiemo Seufer
Hello All, this adds a missing prototype and a store function template which is apparently unused but looks like a good thing to have around (other ports have it). Thiemo Index: target-mips/op_mem.c === RCS file: /sources/qemu/qem