Windows NT 4.0 source code leak
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
930 B

title "Vga Hard.asm"
;++
;
; Copyright (c) 1992 Microsoft Corporation
;
; Module Name:
;
; vgahard.asm
;
; Abstract:
;
; This module includes the banking stub.
;
; Environment:
;
; Kernel mode only.
;
; Revision History:
;
;
;--
.386p
.xlist
include callconv.inc ; calling convention macros
.list
_TEXT SEGMENT DWORD PUBLIC 'CODE'
ASSUME DS:FLAT, ES:FLAT, SS:NOTHING, FS:NOTHING, GS:NOTHING
page ,132
subttl "Bank Switching Stub"
;
; Bank switching code. There are no banks in any mode supported by this
; miniport driver, so there's a bug if this code,
;
public _BankSwitchStart, _BankSwitchEnd
_BankSwitchStart proc ;start of bank switch code
ret ; This should be a fatal error ...
;
; Just here to generate end-of-bank-switch code label.
;
_BankSwitchEnd:
_BankSwitchStart endp
_TEXT ends
end