summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801ex/reset.c
blob: 9936892efea4b629855c9d0499d13e4d79d17c8e (plain)
1
2
3
4
5
6
7
8
#include <arch/io.h>
#include <reset.h>

void hard_reset(void)
{
        /* Try rebooting through port 0xcf9 */
        outb((0 <<3)|(1<<2)|(1<<1), 0xcf9);
}