summaryrefslogtreecommitdiff
path: root/unsorted/QEMU.mdwn
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2007-09-04 21:23:29 +0200
committerThomas Schwinge <tschwinge@gnu.org>2007-09-04 21:23:29 +0200
commitd93deae15ee91a9b04989777fda563f2ccd5410f (patch)
tree9221a69f97cf10e42f96f21765ed7f32de424cfb /unsorted/QEMU.mdwn
parent4011bbadc0c3a646f241ec226611deee2e1a07dd (diff)
Shuffle another bunch of files, related to `Distrib/' and `GNU/'.
Diffstat (limited to 'unsorted/QEMU.mdwn')
-rw-r--r--unsorted/QEMU.mdwn15
1 files changed, 15 insertions, 0 deletions
diff --git a/unsorted/QEMU.mdwn b/unsorted/QEMU.mdwn
new file mode 100644
index 00000000..27086257
--- /dev/null
+++ b/unsorted/QEMU.mdwn
@@ -0,0 +1,15 @@
+QEMU is free software written by Fabrice Bellard that implements a fast processor emulator, allowing a user to run one operating system within another one. It is similar to projects such as Bochs and VMware Workstation, but has several features these lack, including increased speed and support for multiple architectures. By using dynamic translation it achieves a reasonable speed while being easy to port on new host CPUs.
+
+QEMU has two operating modes:
+
+* User mode emulation: QEMU can launch Linux processes compiled for one CPU on another CPU. Linux system calls are converted because of endianness and 32/64 bit mismatches. Wine and Dosemu are the main targets for QEMU.
+
+* System mode emulation: QEMU emulates a full system, including a processor and various peripherials. It enables easier testing and debugging of system code. It can also be used to provide virtual hosting of several virtual PCs on a single server.
+
+The majority of the program is under the [[LGPL]], with the system mode emulation under the [[GPL]].
+
+## <a name="External_links"> External links </a>
+
+* <http://fabrice.bellard.free.fr/qemu/>
+* <http://kidsquid.com/cgi-bin/moin.cgi> QEMU Wiki
+* [Qemu on Windows](http://www.h7.dion.ne.jp/~qemu-win/)