qbasicking
Programmer
Using the out statement you could theoretically use hundreds of thousands or millions of colours in screen 12
this is the code that you should use:
'I& = variable, R&,G&,B& = red, green, blue
OUT &H3C8, I&
OUT &H3C9, R&
OUT &H3C9, G&
OUT &H3C9, B&
each value (R&,G&,B&) can be anything from 0 to 127 giving you 2048383 possible colours which would be useful for a movie player, a GUI...
this is the code that you should use:
'I& = variable, R&,G&,B& = red, green, blue
OUT &H3C8, I&
OUT &H3C9, R&
OUT &H3C9, G&
OUT &H3C9, B&
each value (R&,G&,B&) can be anything from 0 to 127 giving you 2048383 possible colours which would be useful for a movie player, a GUI...