coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
ram_segs.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef RAM_SEGS_H
4 #define RAM_SEGS_H
5 
6 #define RAM_CODE_SEG 0x10
7 #define RAM_DATA_SEG 0x18
8 #define RAM_CODE16_SEG 0x28
9 #define RAM_DATA16_SEG 0x30
10 #define RAM_CODE_ACPI_SEG 0x38
11 #define RAM_DATA_ACPI_SEG 0x40
12 #define RAM_CODE_SEG64 0x48
13 
14 #endif /* RAM_SEGS_H */