bellard | 411bffc | 2003-06-09 15:38:23 +0000 | [diff] [blame^] | 1 | version 0.3: |
| 2 | - added fnsave, frstor, fnstenv, fldenv FPU instructions |
| 3 | - added FPU register save in signal emulation |
| 4 | - ARM port |
| 5 | |
bellard | 3c51961 | 2003-04-29 21:34:02 +0000 | [diff] [blame] | 6 | version 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) |
bellard | 86840ae | 2003-05-08 15:30:27 +0000 | [diff] [blame] | 15 | - added HLT instruction |
bellard | 70e1986 | 2003-05-14 19:02:49 +0000 | [diff] [blame] | 16 | - 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 |
bellard | df0f11a | 2003-05-28 00:27:57 +0000 | [diff] [blame] | 22 | - 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) |
bellard | 3c51961 | 2003-04-29 21:34:02 +0000 | [diff] [blame] | 27 | |
bellard | 66cd584 | 2003-04-10 00:02:58 +0000 | [diff] [blame] | 28 | version 0.1.6: |
| 29 | |
bellard | 1eb8725 | 2003-04-11 01:12:28 +0000 | [diff] [blame] | 30 | - automatic library search system. QEMU can now work with unpatched |
| 31 | ELF dynamic loader and libc (Rusty Russell). |
bellard | 66cd584 | 2003-04-10 00:02:58 +0000 | [diff] [blame] | 32 | - ISO C warning fixes (Alistair Strachan) |
bellard | 1eb8725 | 2003-04-11 01:12:28 +0000 | [diff] [blame] | 33 | - first self-virtualizable version (works only as long as the |
| 34 | translation cache is not flushed) |
| 35 | - RH9 fixes |
bellard | 66cd584 | 2003-04-10 00:02:58 +0000 | [diff] [blame] | 36 | |
bellard | 27c75a9 | 2003-04-07 21:35:21 +0000 | [diff] [blame] | 37 | version 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 | |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 45 | version 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. |
bellard | 27c75a9 | 2003-04-07 21:35:21 +0000 | [diff] [blame] | 51 | - added times() syscall and SIOCATMARK ioctl. |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 52 | |
| 53 | version 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 | |
| 69 | version 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 | |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 78 | version 0.1.1: |
| 79 | |
| 80 | - glibc 2.2 compilation fixes |
| 81 | - added -s and -L options |
| 82 | - binary distribution of x86 glibc and wine |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 83 | - big endian fixes in ELF loader and getdents. |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 84 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 85 | version 0.1: |
| 86 | |
| 87 | - initial public release. |