blob: 14fd893d89fc742e1a3be529aeed147f86f56208 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* $NetBSD: explora.h,v 1.4 2021/03/02 13:44:58 rin Exp $ */
#ifndef _EVBPPC_EXPLORA_H_
#define _EVBPPC_EXPLORA_H_
/*
* Base addresses of external peripherals
*/
#define BASE_FB 0x70000000
#define BASE_LE 0x70800000
#define BASE_FB2 0x71000000
#define BASE_ISA 0x74000000
#define BASE_PCKBC 0x740000c0
#define BASE_PCKBC2 0x740000c8
#define BASE_COM 0x740005f0
#define BASE_LPT 0x740006f0
#define SIZE_FB (2*1024*1024)
void consinit(void);
#endif /* _EVBPPC_EXPLORA_H_ */
|