summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/include/arch/memlayout.h
blob: 34d1bd2567de35aeee821c4b3581084adfa80012 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef __ARCH_MEMLAYOUT_H
#define __ARCH_MEMLAYOUT_H

#if (CONFIG_RAMTOP == 0)
# error "CONFIG_RAMTOP not configured"
#endif

/* Intel386 psABI requires a 16 byte aligned stack. */
#define ARCH_STACK_ALIGN_SIZE 16

#endif /* __ARCH_MEMLAYOUT_H */