Changeset c8bf88d in mainline for kernel/genarch/src/drivers/ega/ega.c


Ignore:
Timestamp:
2009-04-03T15:52:14Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a7b1071
Parents:
2398ee9
Message:

represent special keystrokes (cursor arrows, page up/down, delete, etc.) as appropriate Unicode characters
do not parse ANSI control sequences in kconsole, but in serial line driver

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/drivers/ega/ega.c

    r2398ee9 rc8bf88d  
    4545#include <arch/asm.h>
    4646#include <memstr.h>
     47#include <string.h>
    4748#include <console/chardev.h>
    4849#include <console/console.h>
     
    486487       
    487488        if ((index >> 8)) {
    488                 glyph = '?';
     489                glyph = U_SPECIAL;
    489490                style = INVAL;
    490491        } else {
Note: See TracChangeset for help on using the changeset viewer.