Changeset 9e5938dc in mainline for arch


Ignore:
Timestamp:
2006-03-05T13:30:31Z (19 years ago)
Author:
Sergey Bondari <bondari@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bc314be8
Parents:
bd21922
Message:

ELF framework for all archs. SPARC V9 not tested to compile.

Location:
arch
Files:
5 added
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/include/elf.h

    rbd21922 r9e5938dc  
    3232#include <elf32.h>
    3333
    34 #define CURRENT_ELF_MACHINE     EM_386
    35 #define CURRENT_ELF_DATA        ELFDATA2LSB
     34#define ELF_MACHINE             EM_386
     35#define ELF_DATA_ENCODING       ELFDATA2LSB
     36#define ELF_CLASS               ELFCLASS32
    3637
    3738/*
    3839 * Main ELF loader function
    3940 */
    40 #defiine elf_load(__address header, as_t *as)   elf32_load(header, as)
     41#define elf_load(header, as) elf32_load(header, as)
    4142
    4243#endif
Note: See TracChangeset for help on using the changeset viewer.