1 | // Licensed to the .NET Foundation under one or more agreements. |
2 | // The .NET Foundation licenses this file to you under the MIT license. |
3 | // See the LICENSE file in the project root for more information. |
4 | |
5 | /*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX |
6 | XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX |
7 | XX XX |
8 | XX opcodes.h XX |
9 | XX XX |
10 | XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX |
11 | XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX |
12 | */ |
13 | |
14 | /*****************************************************************************/ |
15 | #ifndef _OPCODE_H_ |
16 | #define _OPCODE_H_ |
17 | |
18 | #include "openum.h" |
19 | |
20 | extern const signed char opcodeSizes[]; |
21 | |
22 | #if defined(DEBUG) |
23 | extern const char* const opcodeNames[]; |
24 | extern const BYTE opcodeArgKinds[]; |
25 | #endif |
26 | |
27 | /*****************************************************************************/ |
28 | #endif // _OPCODE_H_ |
29 | /*****************************************************************************/ |
30 | |