use macros

This commit is contained in:
msaitoh 2000-01-17 21:59:43 +00:00
parent d02bc7577d
commit 7d3068a3b4
2 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.5 1999/09/21 13:16:15 tsubai Exp $ */ /* $NetBSD: machdep.c,v 1.6 2000/01/17 21:59:44 msaitoh Exp $ */
/*- /*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -971,7 +971,7 @@ InitializeBsc()
#ifndef MMEYE_NO_CACHE #ifndef MMEYE_NO_CACHE
/* Cache ON */ /* Cache ON */
SHREG_CCR = 0x0001; SHREG_CCR = CCR_CE;
#endif #endif
} }
@ -980,9 +980,9 @@ sh3_cache_on(void)
{ {
#ifndef MMEYE_NO_CACHE #ifndef MMEYE_NO_CACHE
/* Cache ON */ /* Cache ON */
SHREG_CCR = 0x0001; SHREG_CCR = CCR_CE;
SHREG_CCR = 0x0009; /* cache clear */ SHREG_CCR = CCR_CF | CCR_CE; /* cache clear */
SHREG_CCR = 0x0001; /* cache on */ SHREG_CCR = CCR_CE; /* cache on */
#endif #endif
} }

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.5 1999/09/21 13:16:16 tsubai Exp $ */ /* $NetBSD: machdep.c,v 1.6 2000/01/17 21:59:43 msaitoh Exp $ */
/*- /*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@ -968,7 +968,7 @@ InitializeBsc()
#ifndef MMEYE_NO_CACHE #ifndef MMEYE_NO_CACHE
/* Cache ON */ /* Cache ON */
SHREG_CCR = 0x0001; SHREG_CCR = CCR_CE;
#endif #endif
/* MMEYE_LED = 0x04; */ /* MMEYE_LED = 0x04; */
@ -979,9 +979,9 @@ sh3_cache_on(void)
{ {
#ifndef MMEYE_NO_CACHE #ifndef MMEYE_NO_CACHE
/* Cache ON */ /* Cache ON */
SHREG_CCR = 0x0001; SHREG_CCR = CCR_CE;
SHREG_CCR = 0x0009; /* cache clear */ SHREG_CCR = CCR_CF | CCR_CE; /* cache clear */
SHREG_CCR = 0x0001; /* cache on */ SHREG_CCR = CCR_CE; /* cache on */
#endif #endif
} }