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.
21 lines
410 B
21 lines
410 B
/*
|
|
* m68k cpu parameters for qemu.
|
|
*
|
|
* Copyright (c) 2005-2007 CodeSourcery
|
|
* SPDX-License-Identifier: LGPL-2.0+
|
|
*/
|
|
|
|
#ifndef M68K_CPU_PARAM_H
|
|
#define M68K_CPU_PARAM_H
|
|
|
|
#define TARGET_LONG_BITS 32
|
|
/*
|
|
* Coldfire Linux uses 8k pages
|
|
* and m68k linux uses 4k pages
|
|
* use the smallest one
|
|
*/
|
|
#define TARGET_PAGE_BITS 12
|
|
#define TARGET_PHYS_ADDR_SPACE_BITS 32
|
|
#define TARGET_VIRT_ADDR_SPACE_BITS 32
|
|
|
|
#endif
|
|
|