os/kernel/cpu/cpu_init.h
2020-07-25 16:54:37 -05:00

14 lines
142 B
C

/**
* \file
*/
#ifndef CPU_INIT_H
#define CPU_INIT_H
/**
* Initialize any architecture-specific CPU things.
*/
void cpu_init();
#endif