1*e992f068Schristos /* Copyright (C) 2005-2022 Free Software Foundation, Inc. 216dce513Schristos 316dce513Schristos This file is part of BFD, the Binary File Descriptor library. 416dce513Schristos 516dce513Schristos This program is free software; you can redistribute it and/or modify 616dce513Schristos it under the terms of the GNU General Public License as published by 716dce513Schristos the Free Software Foundation; either version 3 of the License, or 816dce513Schristos (at your option) any later version. 916dce513Schristos 1016dce513Schristos This program is distributed in the hope that it will be useful, 1116dce513Schristos but WITHOUT ANY WARRANTY; without even the implied warranty of 1216dce513Schristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1316dce513Schristos GNU General Public License for more details. 1416dce513Schristos 1516dce513Schristos You should have received a copy of the GNU General Public License 1616dce513Schristos along with this program; if not, write to the Free Software 1716dce513Schristos Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 1816dce513Schristos MA 02110-1301, USA. */ 1916dce513Schristos 2016dce513Schristos #define NO_CORE_COMMAND /* No command name in core file */ 2116dce513Schristos 2216dce513Schristos #undef ALIGN /* They use it, we use it too */ 2316dce513Schristos 2416dce513Schristos /* Note that HOST_PAGE_SIZE -- the page size as far as executable files 2516dce513Schristos are concerned -- is not the same as NBPG, because of page clustering. */ 2616dce513Schristos #define HOST_PAGE_SIZE 1024 2716dce513Schristos #define HOST_MACHINE_ARCH bfd_arch_vax 2816dce513Schristos 2916dce513Schristos #define HOST_TEXT_START_ADDR 0 3016dce513Schristos #define HOST_STACK_END_ADDR (0x80000000 - (UPAGES * NBPG)) 3116dce513Schristos #undef HOST_BIG_ENDIAN_P 32