unknown revision 284194
159243Sobrien
259243Sobrien#------------------------------------------------------------------------------
359243Sobrien# $File: unknown,v 1.8 2013/01/09 22:37:24 christos Exp $
459243Sobrien# unknown:  file(1) magic for unknown machines
559243Sobrien#
659243Sobrien# 0x107 is 0407, 0x108 is 0410, and 0x109 is 0411; those are all PDP-11
759243Sobrien# (executable, pure, and split I&D, respectively), but the PDP-11 version
859243Sobrien# doesn't have the "version %ld", which may be a bogus COFFism (I don't
959243Sobrien# think there was ever COFF for the PDP-11).
1059243Sobrien#
1159243Sobrien# 0x10B is 0413; that's VAX demand-paged, but this is a short, not a
1259243Sobrien# long, as it would be on a VAX.  In any case, that could collide with
1359243Sobrien# VAX demand-paged files, as the magic number is little-endian on those
1459243Sobrien# binaries, so the first 16 bits of the file would contain 0x10B.
1559243Sobrien#
1659243Sobrien# Therefore, those entries are commented out.
1759243Sobrien#
1859243Sobrien# 0x10C is 0414 and 0x10E is 0416; those *are* unknown.
1959243Sobrien#
2059243Sobrien#0	short		0x107		unknown machine executable
2159243Sobrien#>8	short		>0		not stripped
2259243Sobrien#>15	byte		>0		- version %ld
2359243Sobrien#0	short		0x108		unknown pure executable
2459243Sobrien#>8	short		>0		not stripped
2559243Sobrien#>15	byte		>0		- version %ld
2659243Sobrien#0	short		0x109		PDP-11 separate I&D
2759243Sobrien#>8	short		>0		not stripped
2859243Sobrien#>15	byte		>0		- version %ld
2959243Sobrien#0	short		0x10b		unknown pure executable
3059243Sobrien#>8	short		>0		not stripped
3159243Sobrien#>15	byte		>0		- version %ld
3259243Sobrien0	long		0x10c		unknown demand paged pure executable
3359243Sobrien>16	long		>0		not stripped
3459243Sobrien0	long		0x10e		unknown readable demand paged pure executable
3559243Sobrien