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.
48 lines
709 B
48 lines
709 B
/*++
|
|
|
|
|
|
Copyright (c) 1992 Digital Equipment Corporation
|
|
|
|
Module Name:
|
|
|
|
jnsndma.h
|
|
|
|
Abstract:
|
|
|
|
This module is the header file that describes the dma structures
|
|
for the Jensen systems.
|
|
|
|
Author:
|
|
|
|
|
|
Jeff McLeman (mcleman) 13-Jul-1992
|
|
|
|
Revision History:
|
|
|
|
16-Jul-1992 Jeff McLeman (mcleman)
|
|
QUASI_VIRTUAL_ADDRESS should be a PVOID
|
|
|
|
--*/
|
|
|
|
#ifndef _JENSENDMA_
|
|
#define _JENSENDMA_
|
|
|
|
|
|
//
|
|
// Define translation table entry structure.
|
|
//
|
|
|
|
typedef volatile struct _TRANSLATION_ENTRY {
|
|
PVOID VirtualAddress;
|
|
ULONG PhysicalAddress;
|
|
ULONG Index;
|
|
} TRANSLATION_ENTRY, *PTRANSLATION_ENTRY;
|
|
|
|
//
|
|
// Define QUASI_VIRTUAL_ADDRESS
|
|
//
|
|
typedef PVOID QUASI_VIRTUAL_ADDRESS;
|
|
|
|
|
|
#endif // _JENSENDMA_
|
|
|