URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [powerpc/] [shared/] [console/] [reboot.c] - Rev 1765
Compare with Previous | Blame | View Log
/* reboot.c,v 1.1 2002/05/14 17:28:05 joel Exp */ #include "console.inl" /*-------------------------------------------------------------------------+ | Function: rtemsReboot | Description: Reboot the PC. | Global Variables: None. | Arguments: None. | Returns: Nothing. +--------------------------------------------------------------------------*/ void rtemsReboot(void) { /* shutdown and reboot */ kbd_outb(0x4, 0xFE); /* use keyboard controler to do the job... */ } /* rtemsReboot */