diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-01-01 18:31:11 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-01-01 18:31:11 -0500 |
commit | 7f343097712ebdd1f11953c867e208da899b4ba3 (patch) | |
tree | a2bee74e381ce87766c006975eb03b34ee47b213 /tools | |
parent | 964622410105c28c42378440ac3cb6d1a996da49 (diff) | |
download | seabios-7f343097712ebdd1f11953c867e208da899b4ba3.tar.gz |
Switch to new stack when calling ATA function in 16bit mode.
This reduces stack usage (old dos programs don't provide much space).
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/checkstack.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checkstack.py b/tools/checkstack.py index 8eafa975..070bd25e 100755 --- a/tools/checkstack.py +++ b/tools/checkstack.py @@ -13,8 +13,8 @@ import sys import re # List of functions we can assume are never called. -#IGNORE = ['BX_PANIC', '__dprintf'] -IGNORE = ['BX_PANIC'] +#IGNORE = ['BX_PANIC', '__dprintf', '__send_disk_op'] +IGNORE = ['BX_PANIC', '__send_disk_op'] # Find out maximum stack usage for a function def calcmaxstack(funcs, funcaddr): |