Settings

The page will reload to apply your changes.
Theme

ASCII Art Font

ASCII Art Menu

Original Usenet message from alt.ascii-art, 23 Oct 1999.
Re: ByteStew

Re: ByteStew

On Fri, 22 Oct 1999 17:55:37 GMT, see_URL_in.sig@end.to_mail_to.us (R L
Samuell) wrote:

>Though not strictly an example of ASCII art, "ByteStew" is the title of
>an instance of  a related  class of program-generated animations.   The
>original  twelve-year-old  program  written in  GW-BASIC  randomly  and
>endlessly writes individual bytes  with  different  colored backgrounds
>directly to the DOS screen buffer of a PC fast enough that it gives the
>impression  that  the  screen  is  'boiling'  with bytes--   hence, the
>allusion to a bubbling 'byte stew.'

Here's a tiny Turbo Pascal program which'll do the same thing, and
probably a hell of a lot quicker than GW-BASIC.

program ByteStew;
uses crt;

var
  P : word;

begin
  textmode(c80 + font8x8); {remove this line on 80x25-only screens}
  randomize;
  repeat
    P := random(4000); {change to 4000 on 80x25}
    mem[$B800:P * 2] := random(96) + 32; {only ascii characters :) }
    mem[$B800:(P * 2) + 1] := random(128);
  until keypressed;
end.

I would attach the EXE but I don't think I can in a.a-a. If anyone wants it
I'll upload it someplace.

-- 
Arcain

      |      
______|______
    `\|/'    
     /^\     
   /'   `\   
 /'       `\ 

Original message headers
X-Google-Language: ENGLISH,ASCII-7-bit
X-Google-Thread: fd588,49304ad964dc8af0
X-Google-Attributes: gidfd588,public
X-Google-Thread: f996b,49304ad964dc8af0
X-Google-Attributes: gidf996b,public
From: n...@spam.please.com (Arcain)
Subject: Re: ByteStew
Date: 1999/10/23
Message-ID: <381...@news.dial.pipex.com>#1/1
X-Deja-AN: 539754648
References: <1999.294.64536.151@205.198.93.196>
X-Complaints-To: abu...@uk.uu.net
X-Trace: lure.pipex.net 940713926 6800 193.149.81.27 (23 Oct 1999 21:25:26 GMT)
Organization: UUNET WorldCom server (post doesn't reflect views of UUNET WorldCom
NNTP-Posting-Date: 23 Oct 1999 21:25:26 GMT
Newsgroups: alt.ascii-art,alt.ascii-art.animation
About this message. This message was posted publicly to the newsgroup alt.ascii-art in 1999 and is mirrored here unchanged as part of the Historic Archives – only email addresses are masked. The artwork and text belong to their original authors: if you copy a piece, keep the artist's initials or signature intact and credit them where you can. Are you the author? Contact us to get your posts attributed, connected to your artist profile, or removed.