From 7f2e5abcf10d915dcdde22934da077c0ccbbf162 Mon Sep 17 00:00:00 2001 From: kristerw Date: Sat, 2 Nov 2002 11:55:24 +0000 Subject: [PATCH] Revert previous. The assembler bombs on UL integer suffix. --- sys/arch/i386/include/param.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/i386/include/param.h b/sys/arch/i386/include/param.h index 74cbb0aadbe1..7f7b5d0acecf 100644 --- a/sys/arch/i386/include/param.h +++ b/sys/arch/i386/include/param.h @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.51 2002/11/02 07:09:23 perry Exp $ */ +/* $NetBSD: param.h,v 1.52 2002/11/02 11:55:24 kristerw Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -80,7 +80,7 @@ #define PGOFSET (NBPG-1) /* byte offset into page */ #define NPTEPG (NBPG/(sizeof (pt_entry_t))) -#define KERNBASE 0xc0000000UL /* start of kernel virtual space */ +#define KERNBASE 0xc0000000 /* start of kernel virtual space */ #define KERNTEXTOFF (KERNBASE + 0x100000) /* start of kernel text */ #define BTOPKERNBASE ((u_long)KERNBASE >> PGSHIFT)