New Executable
From Just Solve the File Format Problem
(Difference between revisions)
(→Links) |
|||
Line 4: | Line 4: | ||
|extensions={{ext|exe}}, others | |extensions={{ext|exe}}, others | ||
}} | }} | ||
− | '''NE''' ('''New Executable''') is an executable file format used by 16-bit Microsoft Windows, and by some versions of OS/2 and MS-DOS. It is | + | '''NE''' ('''New Executable''') is an executable file format used by 16-bit Microsoft Windows, and by some versions of OS/2 and MS-DOS. It is an extension/hybrid of [[MS-DOS EXE]] (see also [[EXE]]). |
== Identification == | == Identification == | ||
− | An NE file begins with the ASCII signature "<code>MZ</code>" | + | An NE file begins with the ASCII signature "<code>MZ</code>". At offset 60 is a 4-byte integer pointing to an "extended" header that begins with "<code>NE</code>". For more information, see [[MS-DOS EXE]]. |
+ | |||
+ | == Sample files == | ||
+ | * Lots of examples at [http://cd.textfiles.com/ cd.textfiles.com], such as | ||
+ | ** http://cd.textfiles.com/49games/49GAMES/ → .../*.EXE | ||
+ | ** http://cd.textfiles.com/aztechmb/ | ||
+ | ** http://cd.textfiles.com/sbup/ | ||
+ | ** http://cd.textfiles.com/waycool/GAMES/ | ||
== Links == | == Links == |
Revision as of 00:44, 8 May 2014
NE (New Executable) is an executable file format used by 16-bit Microsoft Windows, and by some versions of OS/2 and MS-DOS. It is an extension/hybrid of MS-DOS EXE (see also EXE).
Identification
An NE file begins with the ASCII signature "MZ
". At offset 60 is a 4-byte integer pointing to an "extended" header that begins with "NE
". For more information, see MS-DOS EXE.
Sample files
- Lots of examples at cd.textfiles.com, such as
Links
- Wikipedia article
- The NE EXE File Format
- NE, from the OSDev Wiki
- Executable-File Header Format (3.1)