Striped paint!
Posted: Tue Jan 22, 2013 2:56 pm
I was looking through my old Dragon notes and jottings and turned up this old dodge which may be news to some readers.
By poking values into address 178 (&H B2) when in PMODE 3 OR PMODE 1 you have striped paint.
10 PMODE 3,1:SCREEN1,1:PCLS
20 C=C+1:POKE 178,C
30 LINE(0,0)-(100,100),PSET,BF
40 IF C <255 GOTO 20
50 GOTO 50
If you use this on a Dragon and a fuzzy old TV combination then some values will appear to blend and give an in-between color:
so try POKE 178, 53 for a bluish purple, or POKE 178,54 for a pretty pink. The rest is up to you.
By poking values into address 178 (&H B2) when in PMODE 3 OR PMODE 1 you have striped paint.
10 PMODE 3,1:SCREEN1,1:PCLS
20 C=C+1:POKE 178,C
30 LINE(0,0)-(100,100),PSET,BF
40 IF C <255 GOTO 20
50 GOTO 50
If you use this on a Dragon and a fuzzy old TV combination then some values will appear to blend and give an in-between color:
so try POKE 178, 53 for a bluish purple, or POKE 178,54 for a pretty pink. The rest is up to you.