powerpic
Replacement board for a Casio CA-53W
/** @file system.h
*
* System library for PowerOS.
*
* This library handles:
* - Initializing device hardware (System clock, peripherials, default states)
*/
#ifndef _system_h_
#define _system_h_
/** Initialize the base system. */
void system_init (void);
#endif
// EOF //