9936892efea4b629855c9d0499d13e4d79d17c8e
[coreboot.git] / src / southbridge / intel / i82801ex / i82801ex_reset.c
1 #include <arch/io.h>
2 #include <reset.h>
3
4 void hard_reset(void)
5 {
6         /* Try rebooting through port 0xcf9 */
7         outb((0 <<3)|(1<<2)|(1<<1), 0xcf9);
8 }