Changeset 7284260 in mainline for console


Ignore:
Timestamp:
2006-06-06T23:28:07Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bba6b09
Parents:
0f09bd45
Message:

Small change in colors.
Added scrolling to sysio output.

Location:
console
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • console/console.c

    r0f09bd45 r7284260  
    244244
    245245        set_style(&conn->screenbuffer.style);
    246         curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x);
    247246        curs_visibility(0);
    248247        if (interbuffer) {
     
    272271        }
    273272       
     273        curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x);
    274274        curs_visibility(conn->screenbuffer.is_cursor_visible);
    275275}
  • console/screenbuffer.h

    r0f09bd45 r7284260  
    3131
    3232
    33 #define DEFAULT_FOREGROUND 0xffff00     /**< default console foreground color */
    34 #define DEFAULT_BACKGROUND 0x000080     /**< default console background color */
     33#define DEFAULT_FOREGROUND 0x0  /**< default console foreground color */
     34#define DEFAULT_BACKGROUND 0xf0f0f0     /**< default console background color */
    3535
    3636typedef struct {
Note: See TracChangeset for help on using the changeset viewer.