Go to the documentation of this file.
   18 #ifndef __POK_CONS_H__ 
   19 #define __POK_CONS_H__ 
   21 #if defined (POK_NEEDS_DEBUG) || defined (POK_NEEDS_CONSOLE) || defined (POK_NEEDS_INSTRUMENTATION) || defined (POK_NEEDS_COVERAGE_INFOS) 
   26 #define CONS_ESCAPE    255 
   32 #define CONS_BLACK     0x0 
   34 #define CONS_GREEN     0x2 
   37 #define CONS_MAGENTA   0x5 
   38 #define CONS_YELLOW    0x6 
   39 #define CONS_WHITE     0x7 
   41 #define CONS_BLINK     (1 << 7) 
   42 #define CONS_LIGHT     (1 << 3) 
   44 #define CONS_FRONT(Color)      (Color) 
   45 #define CONS_BACK(Color)       (Color << 4) 
   55 void        pok_cons_print_char(
const char c);
 
   56 void        pok_cons_attr(
uint8_t attr);
 
   57 void        pok_cons_disable_cursor(
void);
 
   59 void        pok_cons_clear(
void);