diff options
author | emaste <emaste@FreeBSD.org> | 2015-05-14 18:29:05 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2015-05-14 18:29:05 +0000 |
commit | 01699072e4f2583fa587d2aea44d8062f228b9cd (patch) | |
tree | 4c9779938a5e45f009a920b1b9a651944c338dc2 /usr.bin/elfdump | |
parent | 983b7214365d0b8138a20f964d3f9518304e2842 (diff) | |
download | FreeBSD-src-01699072e4f2583fa587d2aea44d8062f228b9cd.zip FreeBSD-src-01699072e4f2583fa587d2aea44d8062f228b9cd.tar.gz |
Add ELF machine EM_IAMCU, 32-bit Intel MCU
It is e_machine 6, which was previously reserved for 486.
Diffstat (limited to 'usr.bin/elfdump')
-rw-r--r-- | usr.bin/elfdump/elfdump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/elfdump/elfdump.c b/usr.bin/elfdump/elfdump.c index d58587e..cd10ce3 100644 --- a/usr.bin/elfdump/elfdump.c +++ b/usr.bin/elfdump/elfdump.c @@ -261,6 +261,7 @@ e_machines(u_int mach) case EM_386: return "EM_386"; case EM_68K: return "EM_68K"; case EM_88K: return "EM_88K"; + case EM_IAMCU: return "EM_IAMCU"; case EM_860: return "EM_860"; case EM_MIPS: return "EM_MIPS"; case EM_PPC: return "EM_PPC"; |