diff options
Diffstat (limited to 'sys/arch/i386/netboot/config.h')
-rw-r--r-- | sys/arch/i386/netboot/config.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sys/arch/i386/netboot/config.h b/sys/arch/i386/netboot/config.h new file mode 100644 index 00000000000..38586743818 --- /dev/null +++ b/sys/arch/i386/netboot/config.h @@ -0,0 +1,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 |