diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-07-26 19:33:13 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-07-26 19:33:13 -0400 |
commit | e54ee3800df72c2742f486abf437e75c2b56182c (patch) | |
tree | 1cf4862f4819a6bd0dae0a7b05770fc3937b21f8 /src/config.h | |
parent | e773930ea4f37bca9334a157e86e70f14234888f (diff) | |
download | seabios-e54ee3800df72c2742f486abf437e75c2b56182c.tar.gz |
Add PMM stubs.
Add initial code for Post Memory Manager - it's just the stubs for now.
Also, fix PnP entry point not clearing irqs and direction flags.
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index 6f191070..36f2a728 100644 --- a/src/config.h +++ b/src/config.h @@ -39,6 +39,8 @@ #define CONFIG_APMBIOS 1 // Support PnP BIOS entry point. #define CONFIG_PNPBIOS 1 +// Support Post Memory Manager (PMM) entry point. +#define CONFIG_PMM 0 // Support int 19/18 system bootup support #define CONFIG_BOOT 1 // Support an interactive boot menu at end of post. @@ -165,5 +167,6 @@ #define DEBUG_ISR_hwpic1 5 #define DEBUG_ISR_hwpic2 5 #define DEBUG_HDL_pnp 1 +#define DEBUG_HDL_pmm 1 #endif // config.h |