mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 12:47:25 +00:00
17 lines
211 B
C
17 lines
211 B
C
/**
|
|
* @file cpu.h
|
|
*
|
|
* @author Freya Murphy <freya@freyacat.org>
|
|
*
|
|
* CPU initalization functions
|
|
*/
|
|
|
|
#ifndef _CPU_H
|
|
#define _CPU_H
|
|
|
|
/**
|
|
* Initalize current cpu
|
|
*/
|
|
void cpu_init(void);
|
|
|
|
#endif /* cpu.h */
|