diff options
| author | pbrook | 2006-10-22 02:18:54 +0200 |
|---|---|---|
| committer | pbrook | 2006-10-22 02:18:54 +0200 |
| commit | e6e5906b6e0a81718066ca43aef57515026c6624 (patch) | |
| tree | 79996f66ed5a2e4f37783a114cb45f6913204486 /linux-user/elfload.c | |
| parent | bFLT 64-bit host fix. (diff) | |
| download | qemu-e6e5906b6e0a81718066ca43aef57515026c6624.tar.gz qemu-e6e5906b6e0a81718066ca43aef57515026c6624.tar.xz qemu-e6e5906b6e0a81718066ca43aef57515026c6624.zip | |
ColdFire target.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2196 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/elfload.c')
| -rw-r--r-- | linux-user/elfload.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/linux-user/elfload.c b/linux-user/elfload.c index 57b5ed27d8..042c65dc7a 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -288,6 +288,31 @@ static inline void init_thread(struct target_pt_regs *regs, struct image_info *i #endif +#ifdef TARGET_M68K + +#define ELF_START_MMAP 0x80000000 + +#define elf_check_arch(x) ( (x) == EM_68K ) + +#define ELF_CLASS ELFCLASS32 +#define ELF_DATA ELFDATA2MSB +#define ELF_ARCH EM_68K + +/* ??? Does this need to do anything? +#define ELF_PLAT_INIT(_r) */ + +static inline void init_thread(struct target_pt_regs *regs, struct image_info *infop) +{ + regs->usp = infop->start_stack; + regs->sr = 0; + regs->pc = infop->entry; +} + +#define USE_ELF_CORE_DUMP +#define ELF_EXEC_PAGESIZE 8192 + +#endif + #ifndef ELF_PLATFORM #define ELF_PLATFORM (NULL) #endif |
