Introduction

Language Structure

IB Statements

File System

Comet 32 Runtime

Index

(Bright)

Note: As of Comet version 504, this mnemonic is no longer supported.
Mnemonic: (Bright)
Hex equivalent: "@0E0002@"
Discussion: This mnemonic displays bright characters on the Comet console. Bright characters that are defined as the "background color" of a field (i.e., the first character in the color definition).

To display "bright" characters, use the following instruction:

PRINT (0) (Bright)

Note: The (Bright) mnemonic also turns off blinking fields that have been previously set with the (Blink) mnemonic.

The 16 VGA colors are shown below, with the "bright" characters shown at the right-hand side:

  Regular colors         Bright colors
  =========================================
  0  black               8    gray
  1  blue                9    light blue
  2  green               A    light green
  3  cyan                B    light cyan
  4  red                 C    light red
  5  magenta             D    light magenta
  6  brown               E    yellow
  7  white               F    bright white
Example:
a. 100 FORMAT (Bright)
   .
   PRINT (0,100)

b. PRINT (0) (Bright)