A86: Re: Pics


[Prev][Next][Index][Thread]

A86: Re: Pics




1024 bit pics are best displayed with ldir (load increment and repeat)
like this:
  ld de,$FC00  ;put the video mem as the setination of the pic
  ld bc,1024     ;size of the pic
  ld hl,pic
  ldir
pic:
  .db %11001011, .........

It is best to use BMP2ASM and David Phillips' PIC2RLE for title pics...
hope you understand =)
______
JBrett
tbarwick@esn.net
ICQ UIN: 20607010
http://ww2.esn.net/~tbarwick
ACZ member
Plexus Publishing member
-----Original Message-----
From: KidFedX@aol.com <KidFedX@aol.com>
To: assembly-86@lists.ticalc.org <assembly-86@lists.ticalc.org>
Date: Monday, November 16, 1998 6:12 PM
Subject: A86: Pics


>
>What's the best way to display a picture on the screen through ASM... I'm
>talking about just a simple 2 colored one (on or off).  What kind of
calling
>do I use and what kind of ".db" thing too?  Thanks
>