unknown 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. #------------------------------------------------------------------------------
  2. # unknown: file(1) magic for unknown machines
  3. #
  4. # XXX - this probably should be pruned, as it'll match PDP-11 and
  5. # VAX image formats.
  6. #
  7. # 0x107 is 0407; 0x108 is 0410; both are PDP-11 (executable and pure,
  8. # respectively).
  9. #
  10. # 0x109 is 0411; that's PDP-11 split I&D, but the PDP-11 version doesn't
  11. # have the "version %ld", which may be a bogus COFFism (I don't think
  12. # there ever was COFF for the PDP-11).
  13. #
  14. # 0x10B is 0413; that's VAX demand-paged, but this is a short, not a
  15. # long, as it would be on a VAX.
  16. #
  17. # 0x10C is 0414 and 0x10E is 416; those *are* unknown.
  18. #
  19. 0 short 0x107 unknown machine executable
  20. >8 short >0 not stripped
  21. >15 byte >0 - version %ld
  22. 0 short 0x108 unknown pure executable
  23. >8 short >0 not stripped
  24. >15 byte >0 - version %ld
  25. 0 short 0x109 PDP-11 separate I&D
  26. >8 short >0 not stripped
  27. >15 byte >0 - version %ld
  28. 0 short 0x10b unknown pure executable
  29. >8 short >0 not stripped
  30. >15 byte >0 - version %ld
  31. 0 long 0x10c unknown demand paged pure executable
  32. >16 long >0 not stripped
  33. 0 long 0x10e unknown readable demand paged pure executable