diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2014-12-25 16:31:33 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2014-12-25 16:31:33 (GMT) |
commit | 19e1a97fafb1b73d0efcd995b31951daf1a5c661 (patch) | |
tree | 9cbc897ddb1d3005fb8dadfa3ad830c607acdddd /src/format/elf | |
parent | 9cab778bfaaca2589a383445e8569d99d73374d5 (diff) |
Cleaned all the code for immediate operands.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@444 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/elf')
-rw-r--r-- | src/format/elf/symbols.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/format/elf/symbols.c b/src/format/elf/symbols.c index 30bdcca..d69e41a 100644 --- a/src/format/elf/symbols.c +++ b/src/format/elf/symbols.c @@ -141,10 +141,15 @@ bool load_elf_symbols(GElfFormat *format) result = load_elf_internal_symbols(format); #endif + + entry_point = ELF_HDR(format, format->header, e_entry); + G_BIN_FORMAT(format)->entry_point = entry_point; + + - printf("E_ENTRY : 0x%08lx\n", (unsigned long)entry_point); + printf("E_ENTRY : 0x%08lx\n", (unsigned long)entry_point); if (ELF_HDR(format, format->header, e_machine) == EM_ARM) entry_point &= ~0x1; |