Re: A83: Black Screen
[Prev][Next][Index][Thread]
Re: A83: Black Screen
The LDIR instruction is great here:
;Blacks Screen:
ld hl,plotsscreen ;Start at plotsscreen
ld de,plotsscreen+1 ;Copies to the next byte
ld bc,767 ;768 (length of graph memory minus 1)
ld (hl),255 ;First byte of graph memory is all black
ldir ;The first byte is copied to the next 767 bytes!
>From: Jeff Ruud <pyroboy_04@yahoo.com>
>Reply-To: assembly-83@lists.ticalc.org
>To: assembly-83@lists.ticalc.org
>Subject: A83: Black Screen
>Date: Sun, 7 Jan 2001 15:32:45 -0800 (PST)
>
>
>Can someone please tell me how to make the screen completely black without
>using tons of line commands? Thanks for the help.
>
>~Jeff
>
>
>
>---------------------------------
>Do You Yahoo!?
>Yahoo! Photos - Share your holiday photos online!
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com
Follow-Ups: