14 lines
142 B
C
14 lines
142 B
C
/**
|
|
* \file
|
|
*/
|
|
|
|
#ifndef CPU_INIT_H
|
|
#define CPU_INIT_H
|
|
|
|
/**
|
|
* Initialize any architecture-specific CPU things.
|
|
*/
|
|
void cpu_init();
|
|
|
|
#endif
|