summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2-tmp/output/graphic/1239008
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/graphic/1239008')
-rw-r--r--results/classifier/deepseek-2-tmp/output/graphic/123900821
1 files changed, 0 insertions, 21 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/graphic/1239008 b/results/classifier/deepseek-2-tmp/output/graphic/1239008
deleted file mode 100644
index c372a178..00000000
--- a/results/classifier/deepseek-2-tmp/output/graphic/1239008
+++ /dev/null
@@ -1,21 +0,0 @@
-
-qemu fails to scroll screen on ^Vidmem output
-
-Pascal uses ^Vidmem for B800 console output. The terminal does not oblige the Pascal OS code to scroll the output. Virtualbox emulation works, so this must be a qemu bug. Using QEMU in KVM mode as Ubuntu LTS.
-
-Source line to trip bug(in theory pushes VideoMem up one line):
-
-procedure Scroll;
-//this is whats causing crashes. FIXME:Virtualbox not affected.QEMU BUG?
-begin
-  if scrolldisabled then exit;
-      if (CursorPosY >= 24) then begin  //in case called before end of screen
-    blank:= $20 or (TextAttr shl 8);
-    Move((VidMem+(2*80))^,VidMem^,24*(2*80));
-    // Empty last line
-    FillWord((VidMem+(24*2*80))^,80,Blank);
-    CursorPosX:=1;
-    CursorPosY:=23;
-    update_cursor;
-  end;
-end;
\ No newline at end of file