Re: A86: disp sprite


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

Re: A86: disp sprite




You have to use a sprite routine to either or, or xor a sprite to the
screen.  Use the fastsprite routine.  You can find that in the ticalc
routines archive.
--------------
Jbrett
tbarwick@esn.net
http://ww2.esn.net/~tbarwick
I just added a TI-86 page, Check it out!!!
-----Original Message-----
From: BlAsTo1414@aol.com <BlAsTo1414@aol.com>
To: assembly-86@lists.ticalc.org <assembly-86@lists.ticalc.org>
Date: Saturday, September 12, 1998 8:30 PM
Subject: Re: A86: disp sprite


>
>that doesn't answer my question.
>
>How do you display a sprite?
>I tried the following code but it displayed 'garbage' at the top of my
screen:
>
>#include "ti86asm.inc"
>
>.org _asm_exec_ram
>
> call _clrLCD
> ld hl, $0000
> ld (_curRow),hl
> ld hl, Sprite
> call _puts
> call _newline
> ret
>
>Sprite:
> .db %00111100
> .db %01000010
> .db %10000001
> .db %10100101
> .db %10000001
> .db %10111101
> .db %01000010
> .db %00111100
>
>
>.end
>
>
>what am I doing wrong?
>
>BlAsTo1414
>