eric patch
[coreboot.git] / src / southbridge / intel / i82801er / i82801er_reset.c
1 #include <arch/io.h>
2
3 void i82801er_hard_reset(void)
4 {
5         /* Try rebooting through port 0xcf9 */
6         outb((0 <<3)|(1<<2)|(1<<1), 0xcf9);
7 }