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.
17 lines
396 B
17 lines
396 B
/*
|
|
* UniCore32 cpu parameters for qemu.
|
|
*
|
|
* Copyright (C) 2010-2012 Guan Xuetao
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef UNICORE32_CPU_PARAM_H
|
|
#define UNICORE32_CPU_PARAM_H 1
|
|
|
|
#define TARGET_LONG_BITS 32
|
|
#define TARGET_PAGE_BITS 12
|
|
#define TARGET_PHYS_ADDR_SPACE_BITS 32
|
|
#define TARGET_VIRT_ADDR_SPACE_BITS 32
|
|
#define NB_MMU_MODES 2
|
|
|
|
#endif
|
|
|