xref: /openbmc/qemu/target/rx/cpu-param.h (revision 8d77adbc)
1*27a4a30eSYoshinori Sato /*
2*27a4a30eSYoshinori Sato  *  RX cpu parameters
3*27a4a30eSYoshinori Sato  *
4*27a4a30eSYoshinori Sato  *  Copyright (c) 2019 Yoshinori Sato
5*27a4a30eSYoshinori Sato  *
6*27a4a30eSYoshinori Sato  * This program is free software; you can redistribute it and/or modify it
7*27a4a30eSYoshinori Sato  * under the terms and conditions of the GNU General Public License,
8*27a4a30eSYoshinori Sato  * version 2 or later, as published by the Free Software Foundation.
9*27a4a30eSYoshinori Sato  *
10*27a4a30eSYoshinori Sato  * This program is distributed in the hope it will be useful, but WITHOUT
11*27a4a30eSYoshinori Sato  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12*27a4a30eSYoshinori Sato  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13*27a4a30eSYoshinori Sato  * more details.
14*27a4a30eSYoshinori Sato  *
15*27a4a30eSYoshinori Sato  * You should have received a copy of the GNU General Public License along with
16*27a4a30eSYoshinori Sato  * this program.  If not, see <http://www.gnu.org/licenses/>.
17*27a4a30eSYoshinori Sato  */
18*27a4a30eSYoshinori Sato 
19*27a4a30eSYoshinori Sato #ifndef RX_CPU_PARAM_H
20*27a4a30eSYoshinori Sato #define RX_CPU_PARAM_H
21*27a4a30eSYoshinori Sato 
22*27a4a30eSYoshinori Sato #define TARGET_LONG_BITS 32
23*27a4a30eSYoshinori Sato #define TARGET_PAGE_BITS 12
24*27a4a30eSYoshinori Sato 
25*27a4a30eSYoshinori Sato #define TARGET_PHYS_ADDR_SPACE_BITS 32
26*27a4a30eSYoshinori Sato #define TARGET_VIRT_ADDR_SPACE_BITS 32
27*27a4a30eSYoshinori Sato 
28*27a4a30eSYoshinori Sato #endif
29