summary refs log tree commit diff stats
path: root/results/classifier/118/none/1895363
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/118/none/1895363')
-rw-r--r--results/classifier/118/none/189536357
1 files changed, 57 insertions, 0 deletions
diff --git a/results/classifier/118/none/1895363 b/results/classifier/118/none/1895363
new file mode 100644
index 000000000..c82000ee3
--- /dev/null
+++ b/results/classifier/118/none/1895363
@@ -0,0 +1,57 @@
+performance: 0.718
+register: 0.649
+virtual: 0.558
+device: 0.543
+peripherals: 0.540
+semantic: 0.482
+graphic: 0.478
+architecture: 0.414
+user-level: 0.283
+network: 0.278
+debug: 0.198
+vnc: 0.192
+files: 0.181
+ppc: 0.180
+socket: 0.171
+PID: 0.122
+permissions: 0.106
+boot: 0.098
+risc-v: 0.096
+mistranslation: 0.092
+arm: 0.079
+VMM: 0.078
+TCG: 0.068
+hypervisor: 0.067
+x86: 0.065
+i386: 0.062
+assembly: 0.056
+kernel: 0.047
+KVM: 0.033
+
+borland IDEs double up cursor key presses (need timing on PS2 port input)
+
+Most DOS-era IDEs from Borland (I have tried Borland C++ 2.0, Borland C++ 3.1 and Turbo Pascal 7.1) exhibit strange responses to the keyboard.  Cursor keys are registered twice, so each press of a cursor key causes the cursor to move twice. Also the other keys occasionally are missed or duplicated.
+
+From an internet search, the problem appears to be this.  These programs read the PS2 input register multiple times per incoming byte, on the assumption that the byte will remain there for at least a few hundred microseconds, before the next byte (if any) appears there.  qemu treats a read of the register by the guest as an acknowledgement of the incoming byte and puts the next byte into the register immediately, thus breaking the programs that expect each successive byte to stay in place for a while.
+
+The obvious solution is to use a timer to advance through the queued bytes.
+
+This virtualbox bug talks about the same thing, and also mentions qemu:
+
+https://www.virtualbox.org/ticket/58
+
+One of the people in the conversation created a patch for qemu which wasn't accepted:
+
+http://qemu.11.n7.nabble.com/PATCH-Fix-for-DOS-keyboard-problems-td114076.html
+
+
+Just found the complete conversation regarding the abovementioned patch:
+
+https://lists.nongnu.org/archive/html/qemu-devel/2009-08/msg01182.html
+
+
+Possible fix:
+https://<email address hidden>/msg804823.html
+
+The patch mentioned by Philippe has now been merged to the QEMU master branch (commit d1e45668d2128b064). Michael, could you maybe check the current git version to see whether this problem has been fixed now?
+