If 040 MMU is enabled, attempt to get memory mapping. (At present, this
can't happen because we've faked a disabled MMU.)
This commit is contained in:
parent
c0af85f6f3
commit
a54b50a58c
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pmap_bootstrap.c,v 1.29 1996/10/15 06:41:48 scottr Exp $ */
|
||||
/* $NetBSD: pmap_bootstrap.c,v 1.30 1997/01/07 07:44:01 scottr Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991, 1993
|
||||
|
@ -570,7 +570,8 @@ bootstrap_mac68k(tc)
|
|||
oldROMBase = ROMBase;
|
||||
mac68k_vidphys = videoaddr;
|
||||
|
||||
if ((tc & 0x80000000) && (mmutype == MMU_68030)) {
|
||||
if (((tc & 0x80000000) && (mmutype == MMU_68030)) ||
|
||||
((tc & 0x8000) && (mmutype == MMU_68040))) {
|
||||
if (mac68k_machine.do_graybars)
|
||||
printf("Getting mapping from MMU.\n");
|
||||
(void) get_mapping();
|
||||
|
|
Loading…
Reference in New Issue