34 lines
448 B
C
34 lines
448 B
C
/*++
|
|
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
data.c
|
|
|
|
Abstract:
|
|
|
|
This file contains all of the data required by the unassembler
|
|
|
|
Author:
|
|
|
|
Based on code by Mike Tsang (MikeTs)
|
|
Stephane Plante (Splante)
|
|
|
|
Environment:
|
|
|
|
User mode only
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _DATA_H
|
|
#define _DATA_H
|
|
|
|
extern ASLTERM TermTable[];
|
|
extern UCHAR OpClassTable[];
|
|
extern OPMAP ExOpClassTable[];
|
|
|
|
#endif //ifndef _DATA_H
|