NetBSD/sys/arch/ofppc/include/autoconf.h
thorpej 624e16931f Begin the task of splitting up the ofppc port into common code
and platform-specific code, similar to how the Alpha port is
split up.
2001-10-22 23:01:17 +00:00

24 lines
474 B
C

#ifndef _MACHINE_AUTOCONF_H_
#define _MACHINE_AUTOCONF_H_
#ifdef _KERNEL
void initppc (u_int, u_int, char *);
void install_extint (void (*)(void));
void dumpsys (void);
void softnet (void);
void strayintr (int);
void inittodr (time_t);
void resettodr (void);
void cpu_initclocks (void);
void decr_intr (struct clockframe *);
void setstatclockrate (int);
#ifdef __BROKEN_DK_ESTABLISH
void dk_cleanup(void);
#endif
#endif /* _KERNEL */
#endif /* _MACHINE_AUTOCONF_H_ */