blob: 7e9ee7134e8083659facc6bfb63881fa5c8ba2ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __QEMU_MEMORY_H_
#define __QEMU_MEMORY_H_
unsigned long qemu_get_high_memory_size(void);
unsigned long qemu_get_memory_size(void);
#endif
|