mirror of
https://github.com/acpica/acpica/
synced 2025-01-15 05:49:18 +03:00
Simplified method stack constants
date 99.08.20.22.30.00; author rmoore1; state Exp;
This commit is contained in:
parent
99d675fa27
commit
d79ceeb2e9
@ -144,14 +144,13 @@
|
||||
#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#
|
||||
* Method Stack, containing local variables and argumetns
|
||||
*/
|
||||
#define MTH_LOCAL_BASE 0
|
||||
#define MTH_NUM_LOCALS 8
|
||||
#define MTH_ARG_BASE (MTH_LOCAL_BASE + MTH_NUM_LOCALS)
|
||||
#define MTH_MAX_LOCAL 7
|
||||
|
||||
#define MTH_NUM_ARGS 7
|
||||
#define MTH_ENTRY_SIZE (MTH_NUM_LOCALS + MTH_NUM_ARGS)
|
||||
#define MTH_MAX_ARG 6
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user