1c8c0d267SMichael Rolnik /* 2c8c0d267SMichael Rolnik * QEMU AVR CPU 3c8c0d267SMichael Rolnik * 4c8c0d267SMichael Rolnik * Copyright (c) 2016-2020 Michael Rolnik 5c8c0d267SMichael Rolnik * 6c8c0d267SMichael Rolnik * This library is free software; you can redistribute it and/or 7c8c0d267SMichael Rolnik * modify it under the terms of the GNU Lesser General Public 8c8c0d267SMichael Rolnik * License as published by the Free Software Foundation; either 9c8c0d267SMichael Rolnik * version 2.1 of the License, or (at your option) any later version. 10c8c0d267SMichael Rolnik * 11c8c0d267SMichael Rolnik * This library is distributed in the hope that it will be useful, 12c8c0d267SMichael Rolnik * but WITHOUT ANY WARRANTY; without even the implied warranty of 13c8c0d267SMichael Rolnik * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14c8c0d267SMichael Rolnik * Lesser General Public License for more details. 15c8c0d267SMichael Rolnik * 16c8c0d267SMichael Rolnik * You should have received a copy of the GNU Lesser General Public 17c8c0d267SMichael Rolnik * License along with this library; if not, see 18c8c0d267SMichael Rolnik * <http://www.gnu.org/licenses/lgpl-2.1.html> 19c8c0d267SMichael Rolnik */ 20c8c0d267SMichael Rolnik 21c8c0d267SMichael Rolnik #ifndef AVR_CPU_PARAM_H 22c8c0d267SMichael Rolnik #define AVR_CPU_PARAM_H 23c8c0d267SMichael Rolnik 24eba24b60SRichard Henderson #define TARGET_PAGE_BITS 10 25c8c0d267SMichael Rolnik #define TARGET_PHYS_ADDR_SPACE_BITS 24 26c8c0d267SMichael Rolnik #define TARGET_VIRT_ADDR_SPACE_BITS 24 27c8c0d267SMichael Rolnik 28*4ff1b33eSPhilippe Mathieu-Daudé #define TARGET_INSN_START_EXTRA_WORDS 0 29*4ff1b33eSPhilippe Mathieu-Daudé 30c8c0d267SMichael Rolnik #endif 31