QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
627 B
33 lines
627 B
/*
|
|
* QEMU memory mapping
|
|
*
|
|
* Copyright Fujitsu, Corp. 2011, 2012
|
|
*
|
|
* Authors:
|
|
* Wen Congyang <wency@cn.fujitsu.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#include "cpu.h"
|
|
#include "exec/cpu-all.h"
|
|
#include "sysemu/memory_mapping.h"
|
|
|
|
int qemu_get_guest_memory_mapping(MemoryMappingList *list)
|
|
{
|
|
return -2;
|
|
}
|
|
|
|
int cpu_get_memory_mapping(MemoryMappingList *list,
|
|
CPUArchState *env)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
bool cpu_paging_enabled(CPUArchState *env)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|