[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: AppleWin and graphics
On May 6, 12:08 am, aiiad...@gmail.com wrote:
>
> try:
>
> HGR2
>
> poke 16384,0
> look at upper left of screen...
> poke 16384,128
> you should see upper left of screen go from blank to
> a solid line
This doesn't work as this sets only the color bit but no
actually visible bits (pixels) on the screen.
POKE 16384,127 would be a working alternative
as this sets all 7 visible bits in the byte.
bye
Marcus