Changeset af9a7c5 in mainline for arch/mips32/src/drivers/msim.c


Ignore:
Timestamp:
2005-12-12T15:38:44Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
93b84b3
Parents:
c0b7f00
Message:

Small kconsole readline changes.
Some mips tweaks to allow for real keyboard support in indy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/drivers/msim.c

    rc0b7f00 raf9a7c5  
    3131#include <arch/drivers/msim.h>
    3232#include <arch/cp0.h>
     33#include <console/console.h>
    3334
    3435static chardev_t console;
     
    7879
    7980/* Return console object representing msim console */
    80 chardev_t * msim_console(void)
     81void msim_console(void)
    8182{
    8283        chardev_initialize("msim_console", &console, &msim_ops);
     
    8687        cp0_unmask_int(MSIM_KBD_IRQ);
    8788
    88         return &console;
     89        stdin = &console;
     90        stdout = &console;
    8991}
Note: See TracChangeset for help on using the changeset viewer.