diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2001-03-09 05:44:44 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2001-03-09 05:44:44 +0000 |
commit | 4424fbaf9a87f60b70a8e78a26ca3c269d4851d6 (patch) | |
tree | 854dcd80017eaca186784e5b5d007809cecfaf6d /sys/arch/mvme88k/include/locore.h | |
parent | 70dc353ae31df19a481d5ec5cd2f83804fa0f7ea (diff) |
kernel will compile with -Werror. Added intr.h
Diffstat (limited to 'sys/arch/mvme88k/include/locore.h')
-rw-r--r-- | sys/arch/mvme88k/include/locore.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/arch/mvme88k/include/locore.h b/sys/arch/mvme88k/include/locore.h index 68e95ba9b49..7c8403e3671 100644 --- a/sys/arch/mvme88k/include/locore.h +++ b/sys/arch/mvme88k/include/locore.h @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.h,v 1.6 2001/03/08 00:03:22 miod Exp $ */ +/* $OpenBSD: locore.h,v 1.7 2001/03/09 05:44:40 smurph Exp $ */ #ifndef _MACHINE_LOCORE_H_ #define _MACHINE_LOCORE_H_ @@ -28,4 +28,15 @@ extern unsigned do_xmem_word __P((vm_offset_t address, unsigned int data, extern unsigned do_xmem_byte __P((vm_offset_t address, unsigned int data, boolean_t supervisor_mode)); +extern unsigned read_processor_identification_register __P((void)); +extern int badaddr __P((vm_offset_t addr, int size)); +extern void set_cpu_number __P((unsigned number)); +extern void doboot __P((void)); + +#if defined(MVME187) || defined(MVME188) +extern void dae_print __P((unsigned *eframe)); +extern void data_access_emulation __P((unsigned *eframe)); +extern int guarded_access( ); +#endif + #endif /* _MACHINE_LOCORE_H_ */ |