summaryrefslogtreecommitdiff
path: root/sys/arch/i386/netboot/config.h
blob: 38586743818c2de12ab541f31c8a7aec285a5255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*	$NetBSD: config.h,v 1.3 1994/10/27 04:21:10 cgd Exp $	*/

/* netboot
 *
 * source in this file came from
 */

#if !defined(__config_h_)
#define __config_h_

/*
   configuration items shared between .c and .s files
 */

#define WORK_AREA_SIZE 0x10000L

#define T(x) printf(" " #x ":\n")

/* turn a near address into an integer
   representing a linear physical addr */
#define LA(x) ((u_long)(x))

#endif