mirror of
https://github.com/acpica/acpica/
synced 2025-01-15 05:49:18 +03:00
Moved Method Stack constants to config.h from global.h
date 99.06.30.19.56.00; author rmoore1; state Exp;
This commit is contained in:
parent
063f7212f1
commit
195ed7af4d
@ -124,6 +124,17 @@
|
||||
#define INITIAL_NAME_BUF_SIZE 32
|
||||
#define AML_EXPR_MAX_NEST 100 /* Max stack depth parsing expressions */
|
||||
|
||||
/*
|
||||
* Method Stack, containing locals and args
|
||||
* per level, 0-7 are Local# and 8-14 are Arg#
|
||||
*/
|
||||
#define MTH_LOCAL_BASE 0
|
||||
#define MTH_NUM_LOCALS 8
|
||||
#define MTH_ARG_BASE (MTH_LOCAL_BASE + MTH_NUM_LOCALS)
|
||||
#define MTH_NUM_ARGS 7
|
||||
#define MTH_ENTRY_SIZE (MTH_NUM_LOCALS + MTH_NUM_ARGS)
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* NameSpace Table size
|
||||
|
Loading…
Reference in New Issue
Block a user