xref: /aosp_15_r20/external/coreboot/src/arch/x86/include/arch/ram_segs.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
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 */
15