acrn-hypervisor/hypervisor/arch/x86/debug/reboot.c

12 lines
181 B
C
Raw Normal View History

/*
* Copyright (C) <2018> Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <acrn_common.h>
int warm_reboot(void)
{
io_write_byte(0x6, 0xcf9);
return 0;
}