New Executable
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Executables |extensions={{ext|exe}}, others }} '''NE''' ('''New Executable''') is an executable file format used by 16-bit Microsof...") |
(Category:Windows) |
||
| (16 intermediate revisions by 3 users not shown) | |||
| Line 2: | Line 2: | ||
|formattype=electronic | |formattype=electronic | ||
|subcat=Executables | |subcat=Executables | ||
| − | |extensions={{ext|exe}}, others | + | |extensions={{ext|exe}}, {{ext|dll}}, {{ext|cpl}}, {{ext|drv}}, {{ext|scr}}, others |
| + | |pronom={{PRONOM|x-fmt/410}} | ||
}} | }} | ||
| − | ''' | + | '''New Executable''' ('''NE''') is an file format used by some versions of OS/2, MS-DOS and most commonly by 16-bit Microsoft Windows; it is used for executables, dynamically-linked libraries, drivers and as a container for [[Windows resource|resources]]. The NE format is an extension of [[MZ]]; it was succeeded by [[Portable Executable]] on Windows and [[Linear Executable]] on OS/2. |
| + | |||
| + | NE is used as a container format for [[FNT (Windows Font)|FNT]] fonts (see [[FON]]), and for [[Icon library|icon libraries]]. | ||
== 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/ | ||
| + | |||
| + | == See also == | ||
| + | * [[Dynamic-link library (Windows)]] | ||
== Links == | == Links == | ||
| Line 13: | Line 26: | ||
* [http://www.fileformat.info/format/exe/corion-ne.htm The NE EXE File Format] | * [http://www.fileformat.info/format/exe/corion-ne.htm The NE EXE File Format] | ||
* [http://wiki.osdev.org/NE NE], from the OSDev Wiki | * [http://wiki.osdev.org/NE NE], from the OSDev Wiki | ||
| + | * [http://www.csn.ul.ie/~caolan/pub/winresdump/winresdump/doc/winexe.txt Executable-File Header Format (3.1)] | ||
| + | * [http://benoit.papillault.free.fr/c/disc2/exefmt.txt Executable-File Header Format (3.00)] | ||
| + | * [http://www.mitec.cz/exe.html EXE Explorer utility] | ||
[[Category:Microsoft]] | [[Category:Microsoft]] | ||
| + | [[Category:Windows]] | ||
| + | [[Category:OS/2]] | ||
Latest revision as of 20:49, 29 March 2017
New Executable (NE) is an file format used by some versions of OS/2, MS-DOS and most commonly by 16-bit Microsoft Windows; it is used for executables, dynamically-linked libraries, drivers and as a container for resources. The NE format is an extension of MZ; it was succeeded by Portable Executable on Windows and Linear Executable on OS/2.
NE is used as a container format for FNT fonts (see FON), and for icon libraries.
Contents[hide] |
[edit] 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.
[edit] Sample files
- Lots of examples at cd.textfiles.com, such as