168349Sobrien
268349Sobrien#------------------------------------------------------------------------------
3267843Sdelphij# $File: unknown,v 1.8 2013/01/09 22:37:24 christos Exp $
468349Sobrien# unknown:  file(1) magic for unknown machines
568349Sobrien#
6267843Sdelphij# 0x107 is 0407, 0x108 is 0410, and 0x109 is 0411; those are all PDP-11
7267843Sdelphij# (executable, pure, and split I&D, respectively), but the PDP-11 version
8267843Sdelphij# doesn't have the "version %ld", which may be a bogus COFFism (I don't
9267843Sdelphij# think there was ever COFF for the PDP-11).
1068349Sobrien#
11267843Sdelphij# 0x10B is 0413; that's VAX demand-paged, but this is a short, not a
12267843Sdelphij# long, as it would be on a VAX.  In any case, that could collide with
13267843Sdelphij# VAX demand-paged files, as the magic number is little-endian on those
14267843Sdelphij# binaries, so the first 16 bits of the file would contain 0x10B.
1568349Sobrien#
16267843Sdelphij# Therefore, those entries are commented out.
1768349Sobrien#
18267843Sdelphij# 0x10C is 0414 and 0x10E is 0416; those *are* unknown.
1968349Sobrien#
20267843Sdelphij#0	short		0x107		unknown machine executable
21267843Sdelphij#>8	short		>0		not stripped
22267843Sdelphij#>15	byte		>0		- version %ld
23267843Sdelphij#0	short		0x108		unknown pure executable
24267843Sdelphij#>8	short		>0		not stripped
25267843Sdelphij#>15	byte		>0		- version %ld
26267843Sdelphij#0	short		0x109		PDP-11 separate I&D
27267843Sdelphij#>8	short		>0		not stripped
28267843Sdelphij#>15	byte		>0		- version %ld
29267843Sdelphij#0	short		0x10b		unknown pure executable
30267843Sdelphij#>8	short		>0		not stripped
31267843Sdelphij#>15	byte		>0		- version %ld
3268349Sobrien0	long		0x10c		unknown demand paged pure executable
3368349Sobrien>16	long		>0		not stripped
3468349Sobrien0	long		0x10e		unknown readable demand paged pure executable
35