diff options
| author | leo <leo@NetBSD.org> | 2001-04-10 19:51:00 +0000 |
|---|---|---|
| committer | leo <leo@NetBSD.org> | 2001-04-10 19:51:00 +0000 |
| commit | 247d880fc9308d70fb954bf0e238f392028cbe56 (patch) | |
| tree | c4b04c199c1a032b280bea33aac555f2e1aeef0f /sys/arch/atari/include | |
| parent | dcc1c6a9fbfa0575eac05da6ba3ace714116b9ff (diff) | |
The Milan uses the U0 pin to switch the pci-bridge between little & big
endian mode. That's why I moved the 'wired' flag to U1.
Diffstat (limited to 'sys/arch/atari/include')
| -rw-r--r-- | sys/arch/atari/include/pte.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/arch/atari/include/pte.h b/sys/arch/atari/include/pte.h index 736c222467f..22de2c76505 100644 --- a/sys/arch/atari/include/pte.h +++ b/sys/arch/atari/include/pte.h @@ -1,4 +1,4 @@ -/* $NetBSD: pte.h,v 1.3 1996/07/20 20:52:43 leo Exp $ */ +/* $NetBSD: pte.h,v 1.4 2001/04/10 19:51:00 leo Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -94,7 +94,15 @@ typedef u_int st_entry_t; #define PG_PROT 0x00000004 #define PG_U 0x00000008 #define PG_M 0x00000010 +/* + * XXX The Milan uses the U0 pin to switch the pci-bridge between little & big + * endian mode. That's why I moved the 'wired' flag to U1 leo 10Apr/2001. + */ +#if 0 #define PG_W 0x00000100 +#else +#define PG_W 0x00000200 +#endif #define PG_RO 0x00000004 #define PG_RW 0x00000000 #define PG_FRAME 0xffffe000 |
