xref: /386bsd/usr/src/kernel/include/dev/isa_iomem.h (revision a2142627)
1 /*-
2  * ISA bus conventions input / output memory physical addresses.
3  *
4  * Copyright (C) 1989-1994, William F. Jolitz. All Rights Reserved.
5  */
6 
7 #ifndef	IOM_BEGIN
8 #define	IOM_BEGIN	0x0a0000		/* Start of I/O Memory "hole" */
9 #define	IOM_END		0x100000		/* End of I/O Memory "hole" */
10 #define	IOM_SIZE	(IOM_END - IOM_BEGIN)
11 #endif	/* IOM_BEGIN */
12 
13