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.
37 lines
789 B
37 lines
789 B
//++
|
|
//
|
|
// Copyright (c) 1993, 1994, 1995 IBM Corporation
|
|
//
|
|
// Copyright (c) 1994 MOTOROLA, INC. All Rights Reserved. This file
|
|
// contains copyrighted material. Use of this file is restricted
|
|
// by the provisions of a Motorola Software License Agreement.
|
|
//
|
|
// Module Name:
|
|
//
|
|
// pxshadbf.s
|
|
//
|
|
// Abstract:
|
|
//
|
|
// This file creates a 64K buffer that will be thrown away
|
|
// at the end of init time. It is to be used for video
|
|
// bios shadowing.
|
|
//
|
|
// Author:
|
|
//
|
|
// Peter L. Johnston ([email protected]) July 1995
|
|
//
|
|
// Environment:
|
|
//
|
|
// Kernel mode only.
|
|
//
|
|
// Revision History:
|
|
//
|
|
//--
|
|
|
|
.new_section INIT,"rcxw"
|
|
.section INIT,"rcxw"
|
|
|
|
.globl HalpShadowBufferPhase0
|
|
HalpShadowBufferPhase0:
|
|
.space 128*1024
|
|
|