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.
33 lines
481 B
33 lines
481 B
/*++
|
|
|
|
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
|