17 lines
311 B
C
17 lines
311 B
C
/*
|
|
* E2K cpu parameters for qemu.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.0+
|
|
*/
|
|
|
|
#ifndef E2K_CPU_PARAM_H
|
|
#define E2K_CPU_PARAM_H 1
|
|
|
|
# define TARGET_LONG_BITS 64
|
|
# define TARGET_PAGE_BITS 12 /* 4k */
|
|
# define TARGET_PHYS_ADDR_SPACE_BITS 40
|
|
# define TARGET_VIRT_ADDR_SPACE_BITS 48
|
|
# define NB_MMU_MODES 4
|
|
|
|
#endif
|