coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
ebda.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __ARCH_EBDA_H
4 #define __ARCH_EBDA_H
5 
6 #include <stddef.h>
7 
8 #define X86_BDA_SIZE 0x200
9 #define X86_BDA_BASE ((void *)0x400)
10 #define X86_EBDA_SEGMENT ((void *)0x40e)
11 #define X86_EBDA_LOWMEM ((void *)0x413)
12 
13 #define DEFAULT_EBDA_LOWMEM (1024 << 10)
14 #define DEFAULT_EBDA_SEGMENT 0xF600
15 #define DEFAULT_EBDA_SIZE 0x400
16 
17 void setup_default_ebda(void);
18 
19 #endif
void setup_default_ebda(void)
Definition: ebda.c:43