mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
files from include/$ARCH to include/arch/$ARCH. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@687 f158a5a8-5612-0410-a976-696ce0be7e32
7 lines
227 B
C
7 lines
227 B
C
/* for now we're a 32bit architecture */
|
|
#define ARCH_ELF_CLASS ELFCLASS32
|
|
#define ARCH_ELF_DATA ELFDATA2LSB
|
|
#define ARCH_ELF_MACHINE_OK(x) ((x)==EM_386 || (x)==EM_486)
|
|
typedef Elf32_Ehdr Elf_ehdr;
|
|
typedef Elf32_Phdr Elf_phdr;
|