TV Terminal Demo: How to display BLUE characters?
Dougworld
Posts: 24
How can I get TV Terminal Demo (written by Chip Gracey) to display BLUE characters?
Red and Green work fine. I get all of the "Color Schemes" to display correctly (including BLUE).
Also, is there a bug in the TV_Terminal.spin code following this line:
$04..$07: 'color scheme?
Should this:
tv_colors := @color_schemes[c - & 3]
Be this:
tv_colors := @color_schemes[c - $04]
Because the value in 'c' starts at $04, it should be subtracted to make a correct index value into color_schemes table, right?
Thanks.
Red and Green work fine. I get all of the "Color Schemes" to display correctly (including BLUE).
Also, is there a bug in the TV_Terminal.spin code following this line:
$04..$07: 'color scheme?
Should this:
tv_colors := @color_schemes[c - & 3]
Be this:
tv_colors := @color_schemes[c - $04]
Because the value in 'c' starts at $04, it should be subtracted to make a correct index value into color_schemes table, right?
Thanks.