systemsw
systemsw.s_cpu_intr = sb1250_cpu_intr;
systemsw.s_intr_establish = sb1250_intr_establish;
(*systemsw.s_clock_init)(systemsw.s_clock_arg);
if (systemsw.s_statclock_init != NULL)
(*systemsw.s_statclock_init)(systemsw.s_statclock_arg);
if (systemsw.s_statclock_setrate != NULL)
(*systemsw.s_statclock_setrate)(systemsw.s_statclock_arg,
struct systemsw systemsw = {
if (systemsw.s_clock_init != clock_init_triv)
systemsw.s_clock_arg = arg;
systemsw.s_clock_init = init;
(*systemsw.s_cpu_intr)(ppl, pc, status);
extern struct systemsw systemsw;
#define cpu_intr_establish(n,s,f,a) ((*systemsw.s_intr_establish)(n,s,f,a))
extern struct systemsw systemsw;
#define cpu_intr_establish(n,s,f,a) ((*systemsw.s_intr_establish)(n,s,f,a))
systemsw.s_cpu_intr = sb1250_cpu_intr;
systemsw.s_intr_establish = sb1250_intr_establish;
(*systemsw.s_clock_init)(systemsw.s_clock_arg);
if (systemsw.s_statclock_init != NULL)
(*systemsw.s_statclock_init)(systemsw.s_statclock_arg);
if (systemsw.s_statclock_setrate != NULL)
(*systemsw.s_statclock_setrate)(systemsw.s_statclock_arg,
struct systemsw systemsw = {
if (systemsw.s_clock_init != clock_init_triv)
systemsw.s_clock_arg = arg;
systemsw.s_clock_init = init;
(*systemsw.s_cpu_intr)(ppl, pc, status);