qemu-20050718-01-vaddr.patch Fix TB virtual page map for x86-64 (at least 48bits of VA must be honoured). qemu-20050718-02-insns.patch - Add support for AMD cache info MCR. - Fix INVLPG instruction in 64bit mode. - Implement the ENTER instruction for 64bit mode. - Add dummy support for MCA, PAT, MTRR and CLFLUSH. - Correct size of 16bit stack pushes in 64bit mode. - Correct segment arithmetics for various instructions in 64bit mode. - Correctly honour the ADDR prefix for these instrutions: maskmov; mov EAX, Ov; mov Ov, EAX - Fix the implicit 64bit semantics for these instrutions: ret im; lcall; lret - Support the PREFETCHW instruction. qemu-20050718-03-apic.patch * vl.h (ioapic_init, ioapic_set_irq): Declare. * hw/apic.c (apic_get_current_count, apic_timer_update): Fix division by zero if s->initial_count == ~0. (apic_get_delivery_bitmask, apic_bus_deliver, apic_deliver, apic_mem_readl, apic_mem_writel): Implent basic interrupt control and delivery (no arbitration). (ioapic_service, ioapic_set_irq, ioapic_mem_readl, ioapic_mem_writel, ioapic_mem_read, ioapic_mem_write, ioapic_init): Implement I/O APIC. (apic_init): Automatically assign ID to the APIC and link it to local APIC list. (apic_reset, ioapic_reset): Add reset handlers. (apic_save, apic_load, ioapic_save, ioapic_load): Add save and load handlers. * hw/i8259.c (pic_set_irq): Forward interrupts to I/O APIC. * hw/pc.c (pc_init1): Initialize the I/O APIC. (cpu_get_pic_interrupt): Compile the APIC stuff even in non-x86-64 case. qemu-20050718-04-doc.patch Minor qemu-img documentation update. qemu-20050718-05-sdl.patch Don't make the SDL window resizable. It doesn't make sense to mark it that way since we really don't handle it (either by scrolling or scaling).