All of lore.kernel.org
 help / color / mirror / Atom feed
From: rjasmin <1239008@bugs.launchpad.net>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [Bug 1239008] Re: qemu fails to scroll screen on ^Vidmem output
Date: Wed, 17 Jun 2015 22:19:17 -0000	[thread overview]
Message-ID: <5581F265.6080904@gmail.com> (raw)
In-Reply-To: 20150617171116.9863.42386.malone@chaenomeles.canonical.com

It is hosted on google code, a dying service. FreePascal(coffee) OS.A 
more basic version is posted there.I assume it works as the version that 
I last built did not for some reason. Sources should be there via 
subversion checkout.Thats what I tested with.
https://code.google.com/p/coffee-os/

  It uses a basic VRAM scroll buffer and writes to it.

Examples are found elsewhere in C. (OS Dev pages)
Im in the middle of a fedup upgrade at the moment, but will see what I 
can do.

On 06/17/2015 12:11 PM, Chris J Arges wrote:
> Can you test with the latest version to see if this still affects you?
> If this still is a problem, any information on how to obtain the Guest OS in question that would also be helpful.
>
> ** Changed in: qemu (Ubuntu)
>         Status: New => Incomplete
>

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1239008

Title:
  qemu fails to scroll screen on ^Vidmem output

Status in QEMU:
  New
Status in qemu package in Ubuntu:
  Incomplete

Bug description:
  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;

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1239008/+subscriptions

  reply	other threads:[~2015-06-17 22:25 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-11 23:33 [Qemu-devel] [Bug 1239008] [NEW] qemu fails to scroll screen on ^Vidmem output rjasmin
2013-11-28  2:24 ` [Qemu-devel] [Bug 1239008] " Serge Hallyn
2013-11-29 12:50   ` rjasmin
2013-11-29 14:43 ` Serge Hallyn
2015-06-17 17:11 ` Chris J Arges
2015-06-17 22:19   ` rjasmin [this message]
2017-10-28 14:24 ` Thomas Huth
2017-12-28  4:17 ` Launchpad Bug Tracker
2017-12-28  4:17 ` Launchpad Bug Tracker

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5581F265.6080904@gmail.com \
    --to=1239008@bugs.launchpad.net \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.