update for ISA VGA frame buffer possibily
This commit is contained in:
parent
f3415af098
commit
a1476167f8
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dec_2100_a50.c,v 1.16 1996/11/12 05:14:28 cgd Exp $ */
|
||||
/* $NetBSD: dec_2100_a50.c,v 1.17 1996/11/19 05:08:36 cgd Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -127,9 +127,12 @@ dec_2100_a50_cons_init()
|
|||
case 3:
|
||||
/* display console ... */
|
||||
/* XXX */
|
||||
pci_display_console(acp->ac_iot, acp->ac_memt, &acp->ac_pc,
|
||||
(ctb->ctb_turboslot >> 8) & 0xff,
|
||||
ctb->ctb_turboslot & 0xff, 0);
|
||||
if (ctb->ctb_turboslot == 0)
|
||||
isa_display_console(acp->ac_iot, acp->ac_memt);
|
||||
else
|
||||
pci_display_console(acp->ac_iot, acp->ac_memt,
|
||||
&acp->ac_pc, (ctb->ctb_turboslot >> 8) & 0xff,
|
||||
ctb->ctb_turboslot & 0xff, 0);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dec_axppci_33.c,v 1.14 1996/11/12 05:14:33 cgd Exp $ */
|
||||
/* $NetBSD: dec_axppci_33.c,v 1.15 1996/11/19 05:08:37 cgd Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -110,9 +110,12 @@ dec_axppci_33_cons_init()
|
|||
case 3:
|
||||
/* display console ... */
|
||||
/* XXX */
|
||||
pci_display_console(lcp->lc_iot, lcp->lc_memt, &lcp->lc_pc,
|
||||
(ctb->ctb_turboslot >> 8) & 0xff,
|
||||
ctb->ctb_turboslot & 0xff, 0);
|
||||
if (ctb->ctb_turboslot == 0)
|
||||
isa_display_console(lcp->lc_iot, lcp->lc_memt);
|
||||
else
|
||||
pci_display_console(lcp->lc_iot, lcp->lc_memt,
|
||||
&lcp->lc_pc, (ctb->ctb_turboslot >> 8) & 0xff,
|
||||
ctb->ctb_turboslot & 0xff, 0);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dec_eb164.c,v 1.2 1996/11/12 05:14:34 cgd Exp $ */
|
||||
/* $NetBSD: dec_eb164.c,v 1.3 1996/11/19 05:08:38 cgd Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -107,9 +107,12 @@ dec_eb164_cons_init()
|
|||
case 3:
|
||||
/* display console ... */
|
||||
/* XXX */
|
||||
pci_display_console(ccp->cc_iot, ccp->cc_memt, &ccp->cc_pc,
|
||||
(ctb->ctb_turboslot >> 8) & 0xff,
|
||||
ctb->ctb_turboslot & 0xff, 0);
|
||||
if (ctb->ctb_turboslot == 0)
|
||||
isa_display_console(ccp->cc_iot, ccp->cc_memt);
|
||||
else
|
||||
pci_display_console(ccp->cc_iot, ccp->cc_memt,
|
||||
&ccp->cc_pc, (ctb->ctb_turboslot >> 8) & 0xff,
|
||||
ctb->ctb_turboslot & 0xff, 0);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: dec_kn20aa.c,v 1.14 1996/11/12 05:14:35 cgd Exp $ */
|
||||
/* $NetBSD: dec_kn20aa.c,v 1.15 1996/11/19 05:08:39 cgd Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -110,9 +110,12 @@ dec_kn20aa_cons_init()
|
|||
case 3:
|
||||
/* display console ... */
|
||||
/* XXX */
|
||||
pci_display_console(ccp->cc_iot, ccp->cc_memt, &ccp->cc_pc,
|
||||
(ctb->ctb_turboslot >> 8) & 0xff,
|
||||
ctb->ctb_turboslot & 0xff, 0);
|
||||
if (ctb->ctb_turboslot == 0)
|
||||
isa_display_console(ccp->cc_iot, ccp->cc_memt);
|
||||
else
|
||||
pci_display_console(ccp->cc_iot, ccp->cc_memt,
|
||||
&ccp->cc_pc, (ctb->ctb_turboslot >> 8) & 0xff,
|
||||
ctb->ctb_turboslot & 0xff, 0);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue