summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/include/arch/hlt.h
blob: acb43652e4cf6affc914a36196718128ef1a4e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef ARCH_HLT_H
#define ARCH_HLT_H

static __always_inline void hlt(void)
{
	asm("hlt");
}

#endif /* ARCH_HLT_H */