blob: 013555e84321f613390cc465a712b9a8b3544ff9 [file] [log] [blame]
bellard411bffc2003-06-09 15:38:23 +00001version 0.3:
2 - added fnsave, frstor, fnstenv, fldenv FPU instructions
3 - added FPU register save in signal emulation
4 - ARM port
5
bellard3c519612003-04-29 21:34:02 +00006version 0.2:
7
8 - PowerPC disassembly and ELF symbols output (Rusty Russel)
9 - flock support (Rusty Russel)
10 - ugetrlimit support (Rusty Russel)
11 - fstat64 fix (Rusty Russel)
12 - initial Alpha port (Falk Hueffner)
13 - initial IA64 port (Matt Wilson)
14 - initial Sparc and Sparc64 port (David S. Miller)
bellard86840ae2003-05-08 15:30:27 +000015 - added HLT instruction
bellard70e19862003-05-14 19:02:49 +000016 - LRET instruction fix.
17 - added GPF generation for I/Os.
18 - added INT3 and TF flag support.
19 - SHL instruction C flag fix.
20 - mmap emulation for host page size > 4KB
21 - self-modifying code support
bellarddf0f11a2003-05-28 00:27:57 +000022 - better VM86 support (dosemu works on non trivial programs)
23 - precise exception support (EIP is computed correctly in most cases)
24 - more precise LDT/GDT/IDT emulation
25 - faster segment load in vm86 mode
26 - direct chaining of basic blocks (faster emulation)
bellard3c519612003-04-29 21:34:02 +000027
bellard66cd5842003-04-10 00:02:58 +000028version 0.1.6:
29
bellard1eb87252003-04-11 01:12:28 +000030 - automatic library search system. QEMU can now work with unpatched
31 ELF dynamic loader and libc (Rusty Russell).
bellard66cd5842003-04-10 00:02:58 +000032 - ISO C warning fixes (Alistair Strachan)
bellard1eb87252003-04-11 01:12:28 +000033 - first self-virtualizable version (works only as long as the
34 translation cache is not flushed)
35 - RH9 fixes
bellard66cd5842003-04-10 00:02:58 +000036
bellard27c75a92003-04-07 21:35:21 +000037version 0.1.5:
38
39 - ppc64 support + personality() patch (Rusty Russell)
40 - first Alpha CPU patches (Falk Hueffner)
41 - removed bfd.h dependancy
42 - fixed shrd, shld, idivl and divl on PowerPC.
43 - fixed buggy glibc PowerPC rint() function (test-i386 passes now on PowerPC).
44
bellardbc8a22c2003-03-30 21:02:40 +000045version 0.1.4:
46
47 - more accurate VM86 emulation (can launch small DOS 16 bit
48 executables in wine).
49 - fixed push/pop fs/gs
50 - added iret instruction.
bellard27c75a92003-04-07 21:35:21 +000051 - added times() syscall and SIOCATMARK ioctl.
bellardbc8a22c2003-03-30 21:02:40 +000052
53version 0.1.3:
54
55 - S390 support (Ulrich Weigand)
56 - glibc 2.3.x compile fix (Ulrich Weigand)
57 - socketcall endian fix (Ulrich Weigand)
58 - struct sockaddr endian fix (Ulrich Weigand)
59 - sendmsg/recvmsg endian fix (Ulrich Weigand)
60 - execve endian fix (Ulrich Weigand)
61 - fdset endian fix (Ulrich Weigand)
62 - partial setsockopt syscall support (Ulrich Weigand)
63 - more accurate pushf/popf emulation
64 - first partial vm86() syscall support (can be used with runcom example).
65 - added bound, cmpxchg8b, cpuid instructions
66 - added 16 bit addressing support/override for string operations
67 - poll() fix
68
69version 0.1.2:
70
71 - compile fixes
72 - xlat instruction
73 - xchg instruction memory lock
74 - added simple vm86 example (not working with QEMU yet). The 54 byte
75 DOS executable 'pi_10.com' program was released by Bertram
76 Felgenhauer (more information at http://www.boo.net/~jasonp/pipage.html).
77
bellardd691f662003-03-24 21:58:34 +000078version 0.1.1:
79
80 - glibc 2.2 compilation fixes
81 - added -s and -L options
82 - binary distribution of x86 glibc and wine
bellardbc8a22c2003-03-30 21:02:40 +000083 - big endian fixes in ELF loader and getdents.
bellardd691f662003-03-24 21:58:34 +000084
bellard3ef693a2003-03-23 20:17:16 +000085version 0.1:
86
87 - initial public release.