mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
823 B
52 lines
823 B
// TITLE("Vga Bank Switching")
|
|
//++
|
|
//
|
|
// Copyright (c) 1992 Digital Equipment Corporation
|
|
//
|
|
// Module Name:
|
|
//
|
|
// vgahard.s
|
|
//
|
|
// Abstract:
|
|
//
|
|
// This module includes the banking stub.
|
|
//
|
|
// Author:
|
|
//
|
|
// Eric Rehm ([email protected]) 11-Nov-1992
|
|
//
|
|
// Environment:
|
|
//
|
|
// Kernel mode only.
|
|
//
|
|
// Revision History:
|
|
//
|
|
//
|
|
//--
|
|
|
|
#include "ksalpha.h"
|
|
|
|
SBTTL("VGA Bank Switching Code")
|
|
//
|
|
// Bank switching code. There are no banks in any mode supported by this
|
|
// miniport driver, so there's a bug if this code is executed
|
|
//
|
|
|
|
LEAF_ENTRY (BankSwitchStart)
|
|
|
|
_BankSwitchStart: // start of bank switch code
|
|
|
|
ret // This should be a fatal error ...
|
|
|
|
//
|
|
// Just here to generate end-of-bank-switch code label.
|
|
//
|
|
|
|
ALTERNATE_ENTRY(BankSwitchEnd)
|
|
|
|
_BankSwitchEnd:
|
|
|
|
.end BankSwitchStart
|
|
|
|
|
|
|