Updated interpreter modes

date	99.08.25.19.58.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:41:55 +00:00
parent 6c809e5310
commit a1eaca2881

View File

@ -148,13 +148,13 @@ typedef struct AcpiTableDesc
} ACPI_TABLE_DESC;
/* Operational mode of AML scanner */
/* Operational modes of the AML interpreter/scanner */
typedef enum
{
MODE_Load = 0,
MODE_Exec = 1,
MODE_Load1 = 2
IMODE_LoadPass1 = 0x01,
IMODE_LoadPass2 = 0x02,
IMODE_Execute = 0x0E
} OPERATING_MODE;