summaryrefslogtreecommitdiffhomepage
path: root/Boot/BootKit/Platform.hxx
blob: 14a1fa54110c830d38f273d800dfcdecf3de1740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* -------------------------------------------

	Copyright SoftwareLabs

------------------------------------------- */

#pragma once

/**
	@file Processor.hxx
	@brief Processor specific code.
*/

#ifdef __x86_64__

extern "C" void rt_halt();
extern "C" void rt_cli();
extern "C" void rt_sti();
extern "C" void rt_cld();
extern "C" void rt_std();

#endif /* ifdef __x86_64__ */