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.
|
#ifndef __VMDEFS_H
|
|
#define __VMDEFS_H
|
|
|
|
|
|
enum VM_ICLASS_ENUM : UCHAR
|
|
{
|
|
VM_ICLASS_ENTER,
|
|
VM_ICLASS_EXIT,
|
|
VM_ICLASS_MOV,
|
|
VM_ICLASS_SX,
|
|
VM_ICLASS_ZX,
|
|
VM_ICLASS_ADD,
|
|
VM_ICLASS_SUB,
|
|
VM_ICLASS_MUL,
|
|
VM_ICLASS_DIV,
|
|
};
|
|
|
|
#endif |