blob: f31fd89595b30eb9c9396d7b8bedecf603d7e6ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* $OpenBSD: locore.h,v 1.5 2005/04/27 14:09:45 miod Exp $ */
#ifndef _MACHINE_LOCORE_H_
#define _MACHINE_LOCORE_H_
/*
* C prototypes for various routines defined in locore_* and friends
*/
/* subr.S */
unsigned read_processor_identification_register(void);
int badaddr(vaddr_t addr, int size);
#define badwordaddr(x) badaddr(x, 4)
void set_cpu_number(unsigned number);
void doboot(void);
/* locore_c_routines.c */
unsigned getipl(void);
/* eh.S */
void sigsys(void);
void sigtrap(void);
void stepbpt(void);
void userbpt(void);
void syscall_handler(void);
void cache_flush_handler(void);
#endif /* _MACHINE_LOCORE_H_ */
|