[A83] Re: 95 pixels


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

[A83] Re: 95 pixels




>
>Mike, I just want access to all pixels on screen, I already know how to
plot
>them.
>_________________________________________________________________
>Get your FREE download of MSN Explorer at http://explorer.msn.com
>

I do it this way, copied from AsmGuru.

.nolist
#include "ion.inc"
.list
#ifdef TI83P
        .org    progstart-2
        .db     $BB,$6D
#else
        .org    progstart
#endif
        ret
        jr      nc,begin

        .db     "IonText",0
begin:
ld hl,Label
ld de,PLOTSSCREEN
ld bc,768
ldir
call IonFastCopy
bcall(_getkey)
ret
Label:
[ti8xbas generated full screen sprite]
    ret
.end
END